Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

andThenForResult

Returns Err(E) if the input is Err(E), otherwise calls transformer with the value and returns the result.

XXX: Some languages call this operation flatmap. But we don't provide flatMap() as alias of this function to sort with other APIs.

function andThenForResult<T, U, E>(input: Result<T, E>, transformer: ResultTryTransformFn<T, U, E>): Result<U, E>;
§
andThenForResult<T, U, E>(input: Result<T, E>, transformer: ResultTryTransformFn<T, U, E>): Result<U, E>
[src]

§Type Parameters

§Parameters

§
input: Result<T, E>
[src]
§
transformer: ResultTryTransformFn<T, U, E>
[src]

§Return Type