val length : _ t ‑> intlength l returns the number of elements in l, eagerly (linear time).
Caution, will not terminate if l is infinite.
module Infix : sig ... endval of_list : 'a list ‑> 'a tval to_list : 'a t ‑> 'a listval to_list_rev : 'a t ‑> 'a list