raptor
    Preparing search index...

    Interface Time<T>

    interface Time<T> {
        max: (...values: T[]) => T;
        MAX: T;
        MAX_SAFE: T;
        min: (...values: T[]) => T;
        MIN: T;
        order: Order<T>;
        plusScal: (timeVal: T, timeScal: number) => T;
    }

    Type Parameters

    • T
    Index

    Properties

    max: (...values: T[]) => 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: (...values: T[]) => T
    MIN: T

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

    order: Order<T>
    plusScal: (timeVal: T, timeScal: number) => T