Skip to main content
Module

x/result_js/operators/extract.ts

Minimum result type port of Rust
Latest
import * as resultJs from "https://deno.land/x/result_js@2.0.0/operators/extract.ts";

Functions

Returns the contained Ok value.

Returns the contained Err value.

Pattern matching for result. Match on matcher.Ok if Ok, otherwise match on matcher.Err.

Returns the contained Ok value.

Returns the contained Err value.

Returns the contained Ok value, otherwise defaultValue.

Returns the contained Ok value, otherwise computes it from a closure.