IFloatingPoint<TSelf>.WriteExponentBigEndian Method

Definition

Overloads

WriteExponentBigEndian(Byte[])

Writes the current exponent, in big-endian format, to a given array.

WriteExponentBigEndian(Span<Byte>)

Writes the current exponent, in big-endian format, to a given span.

WriteExponentBigEndian(Byte[], Int32)

Writes the current exponent, in big-endian format, to a given array.

WriteExponentBigEndian(Byte[])

Source:
IFloatingPoint.cs
Source:
IFloatingPoint.cs
Source:
IFloatingPoint.cs

Writes the current exponent, in big-endian format, to a given array.

public:
 virtual int WriteExponentBigEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteExponentBigEndian (byte[] destination);
abstract member WriteExponentBigEndian : byte[] -> int
override this.WriteExponentBigEndian : byte[] -> int
Public Overridable Function WriteExponentBigEndian (destination As Byte()) As Integer

Parameters

destination
Byte[]

The array to which the current exponent should be written.

Returns

The number of bytes written to destination.

Applies to

WriteExponentBigEndian(Span<Byte>)

Source:
IFloatingPoint.cs
Source:
IFloatingPoint.cs
Source:
IFloatingPoint.cs

Writes the current exponent, in big-endian format, to a given span.

public:
 virtual int WriteExponentBigEndian(Span<System::Byte> destination);
public virtual int WriteExponentBigEndian (Span<byte> destination);
abstract member WriteExponentBigEndian : Span<byte> -> int
override this.WriteExponentBigEndian : Span<byte> -> int
Public Overridable Function WriteExponentBigEndian (destination As Span(Of Byte)) As Integer

Parameters

destination
Span<Byte>

The span to which the current exponent should be written.

Returns

The number of bytes written to destination.

Applies to

WriteExponentBigEndian(Byte[], Int32)

Source:
IFloatingPoint.cs
Source:
IFloatingPoint.cs
Source:
IFloatingPoint.cs

Writes the current exponent, in big-endian format, to a given array.

public:
 virtual int WriteExponentBigEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteExponentBigEndian (byte[] destination, int startIndex);
abstract member WriteExponentBigEndian : byte[] * int -> int
override this.WriteExponentBigEndian : byte[] * int -> int
Public Overridable Function WriteExponentBigEndian (destination As Byte(), startIndex As Integer) As Integer

Parameters

destination
Byte[]

The array to which the current exponent should be written.

startIndex
Int32

The starting index at which the exponent should be written.

Returns

The number of bytes written to destination starting at startIndex.

Applies to