raptor
    Preparing search index...

    Interface Time<T>

    Time, ordered by a.up and b.low

    interface Time<T> {
        large: OrderedWithMethods<T>;
        MAX: T;
        MAX_SAFE: T;
        MIN: T;
        plusScal: (this: void, timeVal: T, timeScal: number) => T;
        strict: OrderedWithMethods<T>;
        low(this: void, timeVal: T): number;
        up(this: void, timeVal: T): number;
    }

    Type Parameters

    • T
    Index

    Properties

    large: OrderedWithMethods<T>
    MAX: T

    Typically Infinity, i.e. the value such that any other value of the same type is lower

    MAX_SAFE: T

    Typically MAX_SAFE_TIMESTAMP, i.e. the max safe value to this time representation

    MIN: T

    Typically -Infinity, i.e. the value such that any other value of the same type is greater

    plusScal: (this: void, timeVal: T, timeScal: number) => T
    strict: OrderedWithMethods<T>

    Methods