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