Quad Implicit Conversion Operators
Definition
Namespace: Numerics.NET
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
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(Half to Quad) | Converts a half-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)
public static implicit operator Quad (
byte value
)
Parameters
Return Value
QuadA 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.
public static implicit operator Quad (
double value
)
Parameters
- value Double
- A double-precision number.
Return Value
QuadThe quadruple-precision number that has the same value as value.
Implicit Conversion (Half to Quad)
Converts a half-precision floating-point number to a quadruple-precision
floating-point number.
public static implicit operator Quad (
Half value
)
Parameters
- value Half
- A half-precision number.
Return Value
QuadThe 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.
public static implicit operator Quad (
short value
)
Parameters
Return Value
QuadA 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.
public static implicit operator Quad (
int value
)
Parameters
Return Value
QuadA 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.
public static implicit operator Quad (
long value
)
Parameters
Return Value
QuadA Quad value that represents the converted 64 bit signed integer.
Implicit Conversion (SByte to Quad)
Converts a signed byte to a Quad value.
public static implicit operator Quad (
sbyte value
)
Parameters
Return Value
QuadA Quad value that represents the converted signed byte.
Implicit Conversion (UInt16 to Quad)
Converts a 16 bit unsigned integer to a Quad value.
public static implicit operator Quad (
ushort value
)
Parameters
Return Value
QuadA 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.
public static implicit operator Quad (
uint value
)
Parameters
Return Value
QuadA 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.
public static implicit operator Quad (
ulong value
)
Parameters
Return Value
QuadA Quad value that represents the converted 64 bit unsigned integer.