Static methods
staticinlineall<A>(o:Outcome<A>, predicate:A ‑> Bool):Bool
staticfold<A, B>(o:Outcome<A>, seed:B, fn:(accumulator:B, current:A) ‑> B):B
staticmatch<A, B>(o:Outcome<A>, whenSuccess:A ‑> B, whenFailure:(message:String, pos:PosInfos) ‑> B):B
staticmutate<A>(o:Outcome<A>, whenSuccess:A ‑> Void, whenFailure:(message:String, pos:PosInfos) ‑> Void):Outcome<A>
staticorDefault<A>(o:Outcome<A>, whenFailure:(message:String, pos:PosInfos) ‑> A):A