Skip to main content
Module

x/monads/index.ts

👻 Option, Result, and Either types for TypeScript; Inspired by Rust
Latest
File
export { isLeft, isRight, Left, Right, type Either } from './either/either.ts';export { isNone, isSome, None, Some, type Option } from './option/option.ts';export { Err, isErr, isOk, Ok, type Result } from './result/result.ts';