/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/range.vala

  • Committer: Gustav Hartvigsson
  • Date: 2022-06-01 12:14:52 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20220601121452-ntu94w67q3dhhfeq
More work torwards inperementing the parser.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * The contects of this file is in the Public Domain.
 
3
 *
 
4
 * Created by Gustav Hartivgsson.
 
5
 */
 
6
[CCode (cname = "V", cprefix = "v_")]
1
7
namespace Utils {
2
 
 
 
8
  [CCode (cname = "VRangeIterator", cprefix = "v_range_iterator_")]
3
9
  public class RangeIterator {
4
10
    private Range range;
5
11
    private int current;
30
36
    }
31
37
  }
32
38
 
33
 
 
 
39
  [CCode (cname = "VRange", cprefix = "v_range_")]
34
40
  public class Range {
35
41
    public bool reverse {get; private set;}
36
42
    public int start {get; private set;}