Skip to content

tuple_notTupleNotTupleNottuple_nottuple_not🔗

Short description🔗

tuple_notTupleNotTupleNottuple_nottuple_not — Compute the logical not of a tuple.

Signature🔗

tuple_not( integer T, out integer Not )void TupleNot( const HTuple& T, HTuple* Not )static void HOperatorSet.TupleNot( HTuple t, out HTuple not )def tuple_not( t: MaybeSequence[int] ) -> Sequence[int]

def tuple_not_s( t: MaybeSequence[int] ) -> intHerror tuple_not( const Hlong T, Hlong* Not )

Herror T_tuple_not( const Htuple T, Htuple* Not )

HTuple HTuple::TupleNot( ) const

HTuple HTuple.TupleNot( )

Description🔗

tuple_notTupleNot computes the logical not of the input tuple Ttt. The input tuple must contain only integer numbers.

Exception: Empty input tuple🔗

If the input tuple is empty, an exception is raised.

HDevelop In-line Operation🔗

HDevelop provides an in-line operation for tuple_notTupleNot, which can be used in an expression in the following syntax:

Not := not T1

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

Parameters🔗

Ttt (input_control) integer(-array) → (integer)HTuple (Hlong)HTuple (int / long)MaybeSequence[int]Htuple (Hlong)

Input tuple.

Notnotnot (output_control) integer(-array) → (integer)HTuple (Hlong)HTuple (int / long)Sequence[int]Htuple (Hlong)

Binary not of the input tuple.

Combinations with other operators🔗

Combinations

Alternatives

tuple_andTupleAnd, tuple_orTupleOr, tuple_xorTupleXor

See also

tuple_bandTupleBand, tuple_borTupleBor, tuple_bxorTupleBxor, tuple_bnotTupleBnot

Module🔗

Foundation