3 implementations of TryFlattenTo
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\ReadOnlyTensorSpan_1.cs (1)
462public bool TryFlattenTo(scoped Span<T> destination)
System\Numerics\Tensors\netcore\Tensor_1.cs (1)
277public bool TryFlattenTo(scoped Span<T> destination) => AsReadOnlyTensorSpan().TryFlattenTo(destination);
System\Numerics\Tensors\netcore\TensorSpan_1.cs (1)
341public bool TryFlattenTo(scoped Span<T> destination) => AsReadOnlyTensorSpan().TryFlattenTo(destination);
3 references to TryFlattenTo
System.Numerics.Tensors (3)
System\Numerics\Tensors\netcore\ReadOnlyTensorSpan_1.cs (1)
461/// <inheritdoc cref="IReadOnlyTensor{TSelf, T}.TryFlattenTo(Span{T})" />
System\Numerics\Tensors\netcore\Tensor_1.cs (1)
276/// <inheritdoc cref="IReadOnlyTensor{TSelf, T}.TryFlattenTo(Span{T})" />
System\Numerics\Tensors\netcore\TensorSpan_1.cs (1)
340/// <inheritdoc cref="IReadOnlyTensor{TSelf, T}.TryFlattenTo(Span{T})" />