@eagleoutice/flowr - v2.9.14
    Preparing search index...

    Represents a numeric value in R. If you need to create one from a ts numeric, please use getScalarFromInteger.

    interface RNumberValue {
        complexNumber: boolean;
        markedAsInt: boolean;
        num: number;
    }
    Index

    Properties

    complexNumber: boolean

    see RImaginaryMarker, compound imaginary numbers are expressions in R

    markedAsInt: boolean

    see RIntegerMarker, still, R treats 1.1L as numeric and not especially integer

    num: number