blob: 13db042358486f1bc91726a85ecf8b05e8cda8c7 (
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
|
// 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_LIBNECTAR_ITERATOR_NHH
#define NECTAR_LIBNECTAR_ITERATOR_NHH
impl iterator_traits
{
let begin(let it)
{
let end := it._begin;
return end;
}
let end(let it)
{
let end := it._begin;
end += it._end;
return end;
}
let size(let it)
{
let sz := it._size;
return sz;
}
};
#endif // NECTAR_LIBNECTAR_ITERATOR_NHH
|