length property

int get length
override

The number of elements in this Iterable.

Counting all elements may involve iterating through all elements and can therefore be slow. Some iterables have a more efficient way to find the number of elements. These must override the default implementation of length.

Implementation

dc.int get length{
final lcoc_core.PersistentHashMap<E, E> coll7677$1=hm;
if((coll7677$1 is lcoc_core.ICounted$iface)){
return ((coll7677$1 as lcoc_core.ICounted$iface).$_count$0());
}
return ((lcoc_core.ICounted.extensions(coll7677$1, ) as lcoc_core.ICounted$ext).$_count$0(coll7677$1, ));
}