import * as optio from "https://deno.land/x/optio@1.0.0/operators/logical.ts"; FunctionsfandReturns None if the option is None, otherwise returns optb. fandThenReturns None if the option is None, otherwise calls fn with the wrapped value and returns the result. forReturns the option if it contains a value, otherwise returns obtb. forElseReturns the option if it Some, otherwise calls fn and returns the result. fxorReturns Some if exactly one of option, optb is Some, otherwise returns None.