plainfp - v0.1.0
    Preparing search index...

    Type Alias Some<T>

    The "present" case of an Option, carrying a value of type T.

    type Some<T> = {
        some: true;
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    some: true
    value: T