MapResult

A return type to use when a mapping function could encounter an error. Mapping streams have a special case to treat this return type.

alias MapResult(E) = Either!(StreamError, "error", E, "element")

Meta