Uneventful
    Preparing search index...

    Class CallableObject

    A base class for creating callable objects.

    The way this works is that you subclass CallableObject and define a constructor that calls super(someClosure) where someClosure is a unique function object, which will then pick up any properties or methods defined by the subclass.

    (Note: It needs to be unique because the super() call only sets its prototype, and returns the function you passed as this. So if you call it with the same function more than once, you're just reinitializing the same object instead of creating a new one.)

    • Parameters

      • ...args: any[]

      Returns any

    Index

    Functions and Decorators

    Functions and Decorators

    • A base class for creating callable objects.

      The way this works is that you subclass CallableObject and define a constructor that calls super(someClosure) where someClosure is a unique function object, which will then pick up any properties or methods defined by the subclass.

      (Note: It needs to be unique because the super() call only sets its prototype, and returns the function you passed as this. So if you call it with the same function more than once, you're just reinitializing the same object instead of creating a new one.)

      Type Parameters

      • T extends AnyFunction

        The call/return signature that instances of the class will implement.

      Returns CallableObject