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)
88/// <inheritdoc cref="ITensor.Fill(object)" />
System\Numerics\Tensors\netcore\Tensor_1.cs (5)
160/// <inheritdoc cref="ITensor.Clear()" /> 325bool ITensor.IsReadOnly => false; 327object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 337object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 347void 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)
229/// <inheritdoc cref="ITensor.Clear()" /> 358bool ITensor.IsReadOnly => false; 360object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 370object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 380void ITensor.Fill(object value) => Fill(value is T t ? t : throw new ArgumentException($"Cannot convert {value} to {typeof(T)}"));