1 interface inheriting from ITensor
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\ITensor_1.cs (1)
11public interface ITensor<TSelf, T> : ITensor, IReadOnlyTensor<TSelf, T>
11 references to ITensor
System.Numerics.Tensors (11)
System\Numerics\Tensors\netcore\ITensor_1.cs (1)
85/// <inheritdoc cref="ITensor.Fill(object)" />
System\Numerics\Tensors\netcore\Tensor_1.cs (5)
160/// <inheritdoc cref="ITensor.Clear()" /> 337bool ITensor.IsReadOnly => false; 339object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 349object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 359void ITensor.Fill(object value) => Fill(value is T t ? t : throw new ArgumentException($"Cannot convert {value} to {typeof(T)}"));
System\Numerics\Tensors\netcore\TensorSpan_1.cs (5)
226/// <inheritdoc cref="ITensor.Clear()" /> 419bool ITensor.IsReadOnly => false; 421object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 431object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 441void ITensor.Fill(object value) => Fill(value is T t ? t : throw new ArgumentException($"Cannot convert {value} to {typeof(T)}"));