Implemented interface member:
method
Fill
System.Numerics.Tensors.ITensor<TSelf, T>.Fill(T)
2 references to Fill
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\Tensor_1.cs (1)
173
public void Fill(T value) => AsTensorSpan().
Fill
(value);
System\Numerics\Tensors\netcore\TensorSpan_1.cs (1)
380
void ITensor.Fill(object value) =>
Fill
(value is T t ? t : throw new ArgumentException($"Cannot convert {value} to {typeof(T)}"));