toolish - v0.2.5
    Preparing search index...

    Interface Resource

    Denotes a class that uses one or more limited resources (e.g. memory, network connections,...). It's generally advisable to call free as soon as it's no longer needed. It's assumed that it's disposable, i.e. should no longer be used once freed. Correct implementation is the responsibility of the user, no attempt is usually made to enforce this.

    ReusableResource for an interface that is intended for reuse.

    interface Resource {
        free(): void;
    }

    Hierarchy (View Summary)

    Implemented by

    Index

    Methods

    Methods