length property
Returns the number of elements in the iterable.
This is an efficient operation that doesn't require iterating through the elements.
Implementation
int get length => (_tail - _head) & (_table.length - 1);
Returns the number of elements in the iterable.
This is an efficient operation that doesn't require iterating through the elements.
int get length => (_tail - _head) & (_table.length - 1);