You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
val toList : 'a slice -> 'a list
val toVector : 'a slice -> 'a vector
Description
toList slice
returns the list of the elements in the vector slice `slice`.
toVector slice
Discussion
The toVector function is the same as the existing vector function, but it
follows the toType/fromType naming convention.
Rationale
The toList operation complements the existing fromList and can be implemented more
efficiently than by using List.tabulate. Adding it helps reduce the friction of
converting between the different sequence types.