@blockchaincommons/envelope - v1.0.0-beta.4
    Preparing search index...

    Variable FUNCTION_IDSConst

    FUNCTION_IDS: {
        ADD: 1;
        SUB: 2;
        MUL: 3;
        DIV: 4;
        NEG: 5;
        LT: 6;
        LE: 7;
        GT: 8;
        GE: 9;
        EQ: 10;
        NE: 11;
        AND: 12;
        OR: 13;
        XOR: 14;
        NOT: 15;
    } = ...

    Well-known function identifiers (numeric)

    Type Declaration

    • ReadonlyADD: 1

      Addition (add).

    • ReadonlySUB: 2

      Subtraction (sub).

    • ReadonlyMUL: 3

      Multiplication (mul).

    • ReadonlyDIV: 4

      Division (div).

    • ReadonlyNEG: 5

      Unary negation (neg).

    • ReadonlyLT: 6

      Less than (lt).

    • ReadonlyLE: 7

      Less than or equal (le).

    • ReadonlyGT: 8

      Greater than (gt).

    • ReadonlyGE: 9

      Greater than or equal (ge).

    • ReadonlyEQ: 10

      Equal to (eq).

    • ReadonlyNE: 11

      Not equal to (ne).

    • ReadonlyAND: 12

      Logical and (and).

    • ReadonlyOR: 13

      Logical or (or).

    • ReadonlyXOR: 14

      Logical xor (xor).

    • ReadonlyNOT: 15

      Logical not (not).