@studiokeywi/banjo - v0.0.1
    Preparing search index...

    Interface PoolNode<Type>

    Wrapper type for the Disposable interface an a linked list node

    interface PoolNode<Type extends object> {
        next?: Type & Disposable;
        "[dispose]"(): void;
        "[dispose]"(): void;
    }

    Type Parameters

    • Type extends object

      The type of object being wrapped for an object pool

    Hierarchy

    Index

    Properties

    Methods

    Properties

    next?: Type & Disposable

    Next node within the pool (if available)

    Methods

    • Returns void

    • Returns void