summaryrefslogtreecommitdiffhomepage
path: root/doc/requirements/GenericsLibrary.Iterators.md
blob: 8dd2aa1e8049ebb65cefd3b4a617a326d99feff5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# GenericsLibrary: Iterators

## Abstract:

The 'Iterators' concept comes from Stepanov' STL and their papers, Nectar implements them in order to provide walkable traits to work on.

## Example:

```nectar
	let it = trt.begin();
	it.leak().field_value;
```