# Functions
Collect collects values from seq into a new slice and returns it.
Error returns a failed result with the given error.
Iter produces a new Seq[V] from a given function that can fail.
Pull converts the "push-style" Result iterator sequence seq into a "pull-style" iterator accessed by the two functions next and stop.
Value returns a successful result with the given value.
# Type aliases
Seq is an iterator over sequences of result values.