2 implementations of 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)
248
public void
Fill
(T value) => TensorOperation.Invoke<TensorOperation.Fill<T>, T, T>(this, value);
2 references to Fill
System.Numerics.Tensors (2)
System\Numerics\Tensors\netcore\Tensor_1.cs (1)
172
/// <inheritdoc cref="ITensor{TSelf, T}.
Fill
(T)" />
System\Numerics\Tensors\netcore\TensorSpan_1.cs (1)
247
/// <inheritdoc cref="ITensor{TSelf, T}.
Fill
(T)" />