IFloatingPoint<TSelf>.WriteExponentLittleEndian Method

Definition

Overloads

WriteExponentLittleEndian(Byte[])

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

WriteExponentLittleEndian(Span<Byte>)

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

WriteExponentLittleEndian(Byte[], Int32)

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

WriteExponentLittleEndian(Byte[])

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

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

public:
 virtual int WriteExponentLittleEndian(cli::array <System::Byte> ^ destination);
public virtual int WriteExponentLittleEndian (byte[] destination);
abstract member WriteExponentLittleEndian : byte[] -> int
override this.WriteExponentLittleEndian : byte[] -> int
Public Overridable Function WriteExponentLittleEndian (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

WriteExponentLittleEndian(Span<Byte>)

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

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

public:
 virtual int WriteExponentLittleEndian(Span<System::Byte> destination);
public virtual int WriteExponentLittleEndian (Span<byte> destination);
abstract member WriteExponentLittleEndian : Span<byte> -> int
override this.WriteExponentLittleEndian : Span<byte> -> int
Public Overridable Function WriteExponentLittleEndian (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

WriteExponentLittleEndian(Byte[], Int32)

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

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

public:
 virtual int WriteExponentLittleEndian(cli::array <System::Byte> ^ destination, int startIndex);
public virtual int WriteExponentLittleEndian (byte[] destination, int startIndex);
abstract member WriteExponentLittleEndian : byte[] * int -> int
override this.WriteExponentLittleEndian : byte[] * int -> int
Public Overridable Function WriteExponentLittleEndian (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