Table of Contents

Method TryWriteBigEndian

Namespace
Zyl.VectorTraits.Numerics
Assembly
VectorTraits.dll

TryWriteBigEndian<TSelf>(TSelf, Span<byte>, out int)

Tries to write the current value, in big-endian format, to a given span.

public static bool TryWriteBigEndian<TSelf>(TSelf value, Span<byte> destination, out int bytesWritten) where TSelf : IBinaryInteger<TSelf>

Parameters

value TSelf
destination Span<byte>

The span to which the current value should be written.

bytesWritten int

When this method returns, contains the number of bytes written to destination.

Returns

bool

true if the value was succesfully written to destination; otherwise, false.

Type Parameters

TSelf