1 interface inheriting from ITensor
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\ITensor.cs (1)
49
public interface ITensor<TSelf, T> :
ITensor
, IReadOnlyTensor<TSelf, T>
1 implementation of ITensor
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\Tensor.cs (1)
24
public sealed class Tensor<T> :
ITensor
, ITensor<Tensor<T>, T>
3 references to ITensor
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\Tensor.cs (3)
201
bool
ITensor
.IsReadOnly => false;
207
object
ITensor
.this[params scoped ReadOnlySpan<NIndex> indexes] { get => this[indexes]!; set => this[indexes] = (T)value; }
208
object
ITensor
.this[params scoped ReadOnlySpan<nint> indexes] { get => this[indexes]!; set => this[indexes] = (T)value; }