Chalkboard - v3.0.1
    Preparing search index...

    Function NCONV

    • Calculates the opposite of the converse of the conditional on two or more values. It works as a chain, i.e. it returns true only if every adjacent pair (p, q) satisfies ¬q ∨ p.

      Parameters

      • ...vals: (boolean | 0 | 1)[]

        Two or more values

      Returns boolean | 0 | 1

      const x = Chalkboard.bool.CONV(false, false, true); // Returns false
      const y = Chalkboard.bool.CONV(true, false, true); // Returns true