summaryrefslogtreecommitdiffhomepage
path: root/doc/requirements/GenericsLibrary.FreeFunctions.md
blob: 60e8bc545d77861e5a692cad77ae8d2b070a0828 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# GenericsLibrary: Free Functions

## Abstract:

The 'Free functions' concept comes from Stepanov' STL and their papers, Nectar implements them in order to provide algorithms to work on.

## Example:

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

```nectar
	printf("%i:2", size(it));
```