Bitbybit Docs
    Bereite Suchindex vor...

    Aufzählung BooleanOperatorsEnum (Inputs.Logic)

    The comparison used between two values: less than, less or equal, greater, greater or equal, strict equality and inequality, and their loose equivalents. The strict forms compare type as well as value and are the safer default; the loose forms coerce, which is occasionally what you want when comparing a number against text a user typed.

    Index

    Aufzählungselemente

    less: "<"
    lessOrEqual: "<="
    greater: ">"
    greaterOrEqual: ">="
    tripleEqual: "==="
    tripleNotEqual: "!=="
    equal: "=="
    notEqual: "!="