TensorPrimitives.ConvertChecked<TFrom,TTo> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Copies source
to destination
, converting each TFrom
value to a TTo
value.
public:
generic <typename TFrom, typename TTo>
where TFrom : System::Numerics::INumberBase<TFrom> where TTo : System::Numerics::INumberBase<TTo> static void ConvertChecked(ReadOnlySpan<TFrom> source, Span<TTo> destination);
public static void ConvertChecked<TFrom,TTo>(ReadOnlySpan<TFrom> source, Span<TTo> destination) where TFrom : System.Numerics.INumberBase<TFrom> where TTo : System.Numerics.INumberBase<TTo>;
static member ConvertChecked : ReadOnlySpan<'From (requires 'From :> System.Numerics.INumberBase<'From>)> * Span<'o (requires 'o :> System.Numerics.INumberBase<'o>)> -> unit (requires 'From :> System.Numerics.INumberBase<'From> and 'o :> System.Numerics.INumberBase<'o>)
Public Shared Sub ConvertChecked(Of TFrom As INumberBase(Of TFrom), TTo As INumberBase(Of TFrom)) (source As ReadOnlySpan(Of TFrom), destination As Span(Of TTo))
Type Parameters
- TFrom
- TTo
Parameters
- source
- ReadOnlySpan<TFrom>
The source span from which to copy values.
- destination
- Span<TTo>
The destination span into which the converted values should be written.
Exceptions
Destination is too short.
Remarks
This method effectively computes
.destination
[i] = TTo.CreateChecked(source
[i])
Applies to
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.