1 interface inheriting from ITensor
System.Numerics.Tensors (1)
System\Numerics\Tensors\netcore\ITensor_1.cs (1)
13public interface ITensor<TSelf, T> : ITensor, IReadOnlyTensor<TSelf, T>
7 references to ITensor
System.Numerics.Tensors (7)
System\Numerics\Tensors\netcore\ITensor_1.cs (1)
87/// <inheritdoc cref="ITensor.Fill(object)" />
System\Numerics\Tensors\netcore\Tensor_1.cs (5)
205/// <inheritdoc cref="ITensor.Clear()" /> 368bool ITensor.IsReadOnly => false; 370object? ITensor.this[params scoped ReadOnlySpan<NIndex> indexes] 380object? ITensor.this[params scoped ReadOnlySpan<nint> indexes] 390void ITensor.Fill(object value) => Fill(value is T t ? t : throw new ArgumentException($"Cannot convert {value} to {typeof(T)}"));
System\Numerics\Tensors\netcore\TensorSpan.cs (1)
255/// <inheritdoc cref="ITensor.Clear()" />