Get item at some position.
To be @nogc it do not throw, but return tuple with bool okmember.
position
tuple with succes indicator and value
UnrolledList!int l; foreach(i; 0..50) { l.pushBack(i); } auto v = l.get(25); assert(v.ok); assert(v.value == 25);
See Implementation
Get item at some position.
To be @nogc it do not throw, but return tuple with bool okmember.