3 implementations of GetSpan
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\ReadOnlyTensorSpan_1.cs (1)
386public ReadOnlySpan<T> GetSpan(scoped ReadOnlySpan<nint> startIndexes, int length)
System\Numerics\Tensors\netcore\Tensor_1.cs (1)
329ReadOnlySpan<T> IReadOnlyTensor<Tensor<T>, T>.GetSpan(scoped ReadOnlySpan<nint> startIndexes, int length) => AsReadOnlyTensorSpan().GetSpan(startIndexes, length);
System\Numerics\Tensors\netcore\TensorSpan_1.cs (1)
402ReadOnlySpan<T> IReadOnlyTensor<TensorSpan<T>, T>.GetSpan(scoped ReadOnlySpan<nint> startIndexes, int length) => AsReadOnlyTensorSpan().GetSpan(startIndexes, length);
3 references to GetSpan
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\IReadOnlyTensor_1.cs (1)
87/// <inheritdoc cref="GetSpan(ReadOnlySpan{nint}, int)" />
System\Numerics\Tensors\netcore\ITensor_1.cs (1)
97/// <inheritdoc cref="IReadOnlyTensor{TSelf, T}.GetSpan(ReadOnlySpan{nint}, int)" />
System\Numerics\Tensors\netcore\ReadOnlyTensorSpan_1.cs (1)
385/// <inheritdoc cref="IReadOnlyTensor{TSelf, T}.GetSpan(ReadOnlySpan{nint}, int)" />