FillViaUInt32Chunks(ReadOnlySpan<uint>, Span<byte>) Method
Fills dest with UInt32 chunks from src.
Namespace
RandN.Implementation
Containing Type
Filler

Syntax

[MethodImpl(MethodImplOptions.AggressiveInlining)]&#xA;public static (int consumedUInt32, int filledBytes) FillViaUInt32Chunks(ReadOnlySpan<uint> src, Span<byte> dest)

Attributes

TypeDescription
MethodImplAttribute

Parameters

NameTypeDescription
srcReadOnlySpan<uint>
destSpan<byte>

Return Value

TypeDescription
(int consumedUInt32, int filledBytes)A tuple with the number of UInt32 chunks consumed from src and the number of bytes filled into dest.