# 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;
```