/vqdr/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/vqdr/trunk

« back to all changes in this revision

Viewing changes to src/utils/pair.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-05-30 18:35:38 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220530183538-xlixbth43j8k3s42
Added NamedVector

Added Pair

Removed debugs from FastNumber

Added foreach_pop and foreach_peek to Stak.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
namespace  Utils {
 
2
  [Compact]
 
3
  public class Pair<T1, T2> {
 
4
    public T1 v1;
 
5
    public T2 v2;
 
6
 
 
7
    public Pair (T1 v1, T2 v2) {
 
8
      this.v1 = v1;
 
9
      this.v2 = v2;
 
10
    }
 
11
  }
 
12
}