2 references to BitwiseAnd
Microsoft.Data.Analysis (2)
Computations\Arithmetic.net8.cs (2)
77
public static void And(ReadOnlySpan<T> x, T y, Span<T> destination) => TensorPrimitives.
BitwiseAnd
(x, y, destination);
78
public static void And(T x, ReadOnlySpan<T> y, Span<T> destination) => TensorPrimitives.
BitwiseAnd
(y, x, destination);