length 属性

int length

返回可迭代对象中元素的数量。

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

实现

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