Fills dest with UInt32 chunks from src.
- Namespace
- RandN
.Implementation - Containing Type
- Filler
Syntax
[MethodImpl(MethodImplOptions.AggressiveInlining)]
public static (int consumedUInt32, int filledBytes) FillViaUInt32Chunks(ReadOnlySpan<uint> src, Span<byte> dest)
Attributes
Type | Description |
---|---|
MethodImplAttribute |
Parameters
Name | Type | Description |
---|---|---|
src | ReadOnlySpan | |
dest | Span |
Return Value
Type | Description |
---|---|
(int consumedUInt32, | A tuple with the number of UInt32 chunks consumed from src and the number of bytes filled into dest. |