Represents a successful presence of a value, wrapped in an Option type.
The type of the wrapped value.
The value to wrap.
An Option of kind "some" containing the provided value.
const maybeName = Some("Alice");console.log(maybeName.kind); // "some"console.log(maybeName.value); // "Alice" Copy
const maybeName = Some("Alice");console.log(maybeName.kind); // "some"console.log(maybeName.value); // "Alice"
Represents a successful presence of a value, wrapped in an Option type.