/** * Defines a type `T` that can also be `null`. * @category Utils — Options */ export type Nullable = T | null; /** * Defines a type `T` that can also be `null` or `undefined`. * @category Utils — Options */ export type Nullish = T | null | undefined; /** * An implementation of the Rust Option type in JavaScript. * It can be one of the following: * - {@link Some}: Meaning there is a value of type T. * - {@link None}: Meaning there is no value. * * @category Utils — Options */ export type Option = Some | None; /** * Defines a looser type that can be used when serializing an {@link Option}. * This allows us to pass null or the Option value directly whilst still * supporting the Option type for use-cases that need more type safety. * * @category Utils — Options */ export type OptionOrNullable = Option | Nullable; /** * Represents an option of type `T` that has a value. * * @see {@link Option} * @category Utils — Options */ export type Some = { __option: 'Some'; value: T }; /** * Represents an option of type `T` that has no value. * * @see {@link Option} * @category Utils — Options */ export type None = { __option: 'None' }; /** * Creates a new {@link Option} of type `T` that has a value. * * @see {@link Option} * @category Utils — Options */ export const some = (value: T): Option => ({ __option: 'Some', value }); /** * Creates a new {@link Option} of type `T` that has no value. * * @see {@link Option} * @category Utils — Options */ export const none = (): Option => ({ __option: 'None' }); /** * Whether the given data is an {@link Option}. * @category Utils — Options */ export const isOption = (input: any): input is Option => input && typeof input === 'object' && '__option' in input && ((input.__option === 'Some' && 'value' in input) || input.__option === 'None'); /** * Whether the given {@link Option} is a {@link Some}. * @category Utils — Options */ export const isSome = (option: Option): option is Some => option.__option === 'Some'; /** * Whether the given {@link Option} is a {@link None}. * @category Utils — Options */ export const isNone = (option: Option): option is None => option.__option === 'None';