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()" /> 347bool ITensor.IsReadOnly => false; 349object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 359object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 369void 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()" /> 420bool ITensor.IsReadOnly => false; 422object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 432object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 442void ITensor.Fill(object value) => Fill(value is T t ? t : throw new ArgumentException($"Cannot convert {value} to {typeof(T)}"));