@binarymuse/ts-stdlib
    Preparing search index...

    Type Alias RcInfo

    Information about a reference-counted object, returned by Rc.inspect().

    type RcInfo = {
        disposed: boolean;
        id: number;
        innerDisposed: boolean;
        refCount: number;
        weakCount: number;
    }
    Index

    Properties

    disposed: boolean

    Whether the Rc has been disposed.

    id: number

    The internal ID of the Rc.

    innerDisposed: boolean

    Whether the inner object has been disposed.

    refCount: number

    The number of strong references to the Rc.

    weakCount: number

    The number of weak references to the Rc.