blob: 8ff18fffe5adcdec10b0a5a191959a66f31b2c3e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
// Copyright 2026, Amlal El Mahrouss (amlal@nekernel.org)
// Licensed under the Apache License, Version 2.0 (See accompanying
// file LICENSE or copy at http://www.apache.org/licenses/LICENSE-2.0)
// Official repository: https://github.com/nekernel-org/nectar
#ifndef NECTAR_GL_ITERATOR_NHH
#define NECTAR_GL_ITERATOR_NHH
//@ Rules for iterator implementation:
//@ - _begin is the starting point of the iterator.
//@ - _end is the number of elements to iterate over.
//@ - _size is the total size of the collection.
trait iterator_traits
{
let _begin := 0;
let _end := 0;
let _size := 0;
let begin();
let end();
let size();
};
impl iterator : iterator_traits
{
let init()
{
return;
}
let dispose()
{
return;
}
let begin()
{
let end := _begin;
return end;
}
let end()
{
let end :=_begin;
end += _end;
return end;
}
let size()
{
return _size;
}
};
#endif //@ NECTAR_GL_ITERATOR_NHH
|