Interface Applicable

  • All Known Implementing Classes:
    Closure

    public interface Applicable
    A compiled expression that can be evaluated by applying to an argument.

    Similar to Code but more efficient, because it does not require creating a new runtime environment.

    • Method Detail

      • apply

        java.lang.Object apply​(EvalEnv env,
                               java.lang.Object argValue)
      • asCode

        default Code asCode()
        Converts this Applicable to a Code that has similar effect (but is less efficient).