length 属性

int length

返回可迭代元素的数量。

这是一个高效的操作,不需要遍历元素。

实现

int get length => (_tail - _head) & (_table.length - 1);