Vector.Not Method

Computes the logical negation of a boolean vector.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public static Vector<bool> Not(
	Vector<bool> operand
)

Parameters

operand  Vector<Boolean>
A boolean vector.

Return Value

Vector<Boolean>
A vector whose elements are the logical negation of the corresponding elements of operand.

Exceptions

ArgumentNullExceptionoperand is null

See Also