@mikuroxina/mini-fn
    Preparing search index...

    Interface RangeBounds<T>

    A generic range with Bounds of start and end.

    interface RangeBounds<T> {
        end: Bound<T>;
        start: Bound<T>;
    }

    Type Parameters

    • T
    Index

    Properties

    Properties

    end: Bound<T>

    The ending endpoint of the range.

    start: Bound<T>

    The starting endpoint of the range.