Garden 🌻

List::len()

Return the length of the list.

Example
[10, 11, 12].len() //-> 3
Source Code
public method len<T>(this: List<T>): Int {
  __BUILT_IN_IMPLEMENTATION
}