3 references to ShiftRightLogical
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\Tensor.op_UnsignedRightShift.cs (3)
44
public static Tensor<TScalar> operator >>>(in ReadOnlyTensorSpan<TScalar> tensor, int shiftAmount) =>
ShiftRightLogical
(tensor, shiftAmount);
52
public static Tensor<TScalar> operator >>>(Tensor<TScalar> tensor, int shiftAmount) =>
ShiftRightLogical
<TScalar>(tensor, shiftAmount);
69
public static Tensor<TScalar> operator >>>(in TensorSpan<TScalar> tensor, int shiftAmount) =>
ShiftRightLogical
<TScalar>(tensor, shiftAmount);