Skip to main content
Module

x/ahh/mod.ts

Mostly rusty stuff for @denoland.
Go to Latest
import * as ahh from "https://deno.land/x/ahh@v0.6.2/mod.ts";

Variables

v
E

Functionality for Either.

Symbol for Err, the same as Symbol.for("err").

v
I

Functionality for Iterator.

Symbol for Left, the same as Symbol.for("left").

Symbol for None, the same as Symbol.for("none").

v
O

Functionality for Option.

Symbol for Ok, the same as Symbol.for("ok").

v
R

Functionality for Result.

Symbol for Right, the same as Symbol.for("right").

Symbol for Some, the same as Symbol.for("some").

Type Aliases

Represents a value that is either left-handed (Left) or right-handed (Right).

Represents a Result that was erroneous.

An interface for dealing with iterators.

Represents an Either that is left-handed.

Represents an Option that does not exist.

Represents a Result that was successful.

Represents an optional value that either exists (Some) or does not exist (None).

An Iterator that can peek the next item.

Represents a value that is either successful (Ok) or erroneous (Err).

Represents an Either that is right-handed.

Represents an Option that does exist.