/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: 2024-12-21 22:46:57 UTC
  • Revision ID: gustav.hartvigsson@gmail.com-20241221224657-a16tzudfhsmdctmm
[README]
* Fixed logic error.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
 *
4
4
 * Created by Gustav Hartivgsson.
5
5
 */
6
 
 
7
 
namespace Vee {
 
6
[CCode (cname = "V", cprefix = "v_")]
 
7
namespace Utils {
 
8
  [CCode (cname = "VRangeIterator", cprefix = "v_range_iterator_")]
8
9
  public class RangeIterator {
9
10
    private Range range;
10
11
    private int32 current;
35
36
    }
36
37
  }
37
38
 
 
39
  [CCode (cname = "VRange", cprefix = "v_range_")]
38
40
  public class Range {
39
41
    public bool reverse {get; private set;}
40
42
    public int32 start {get; private set;}