Quad Implicit  Conversion Operators

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

Implicit(Byte to Quad) Converts a Byte value to a Quad number.
Implicit(Double to Quad) Converts a double-precision floating-point number to a quadruple-precision floating-point number.
Implicit(Int16 to Quad) Converts a 16 bit signed integer to a Quad value.
Implicit(Int32 to Quad) Converts a 32 bit signed integer to a Quad value.
Implicit(Int64 to Quad) Converts a 64 bit signed integer to a Quad value.
Implicit(SByte to Quad) Converts a signed byte to a Quad value.
Implicit(UInt16 to Quad) Converts a 16 bit unsigned integer to a Quad value.
Implicit(UInt32 to Quad) Converts a 32 bit unsigned integer to a Quad value.
Implicit(UInt64 to Quad) Converts a 64 bit unsigned integer to a Quad value.

Implicit Conversion (Byte to Quad)

Converts a Byte value to a Quad number.
C#
public static implicit operator Quad (
	byte value
)

Parameters

value  Byte
A Byte

Return Value

Quad
A Quad value that represents the converted Byte value.

Implicit Conversion (Double to Quad)

Converts a double-precision floating-point number to a quadruple-precision floating-point number.
C#
public static implicit operator Quad (
	double value
)

Parameters

value  Double
A double-precision number.

Return Value

Quad
The quadruple-precision number that has the same value as value.

Implicit Conversion (Int16 to Quad)

Converts a 16 bit signed integer to a Quad value.
C#
public static implicit operator Quad (
	short value
)

Parameters

value  Int16
A Int16

Return Value

Quad
A Quad value that represents the converted 16 bit signed integer.

Implicit Conversion (Int32 to Quad)

Converts a 32 bit signed integer to a Quad value.
C#
public static implicit operator Quad (
	int value
)

Parameters

value  Int32
A Int32

Return Value

Quad
A Quad value that represents the converted 32 bit signed integer.

Implicit Conversion (Int64 to Quad)

Converts a 64 bit signed integer to a Quad value.
C#
public static implicit operator Quad (
	long value
)

Parameters

value  Int64
A Int64

Return Value

Quad
A Quad value that represents the converted 64 bit signed integer.

Implicit Conversion (SByte to Quad)

Converts a signed byte to a Quad value.
C#
public static implicit operator Quad (
	sbyte value
)

Parameters

value  SByte
A Byte

Return Value

Quad
A Quad value that represents the converted signed byte.

Implicit Conversion (UInt16 to Quad)

Converts a 16 bit unsigned integer to a Quad value.
C#
public static implicit operator Quad (
	ushort value
)

Parameters

value  UInt16
A UInt16

Return Value

Quad
A Quad value that represents the converted 16 bit unsigned integer.

Implicit Conversion (UInt32 to Quad)

Converts a 32 bit unsigned integer to a Quad value.
C#
public static implicit operator Quad (
	uint value
)

Parameters

value  UInt32
A UInt32

Return Value

Quad
A Quad value that represents the converted 32 bit unsigned integer.

Implicit Conversion (UInt64 to Quad)

Converts a 64 bit unsigned integer to a Quad value.
C#
public static implicit operator Quad (
	ulong value
)

Parameters

value  UInt64
A UInt64

Return Value

Quad
A Quad value that represents the converted 64 bit unsigned integer.

See Also