Quad Operators and Type Conversions

Operators

Addition(Quad, Quad) Adds two quadruple-precision floating-point numbers.
Division(Quad, Quad) Divides one quadruple-precision floating-point number by another.
Equality(Quad, Quad) Returns whether left quadruple-precision floating-point number is equal to another.
Explicit(BigInteger to Quad) Converts a BigInteger number to a Quad value.
Explicit(Decimal to Quad) Converts a Decimal number to a Quad value.
Explicit(Quad to Byte) Converts a Quad to a Byte value.
Explicit(Quad to Decimal) Converts a Quad to a Decimal number.
Explicit(Quad to Double) Converts a Quad to a double-precision floating-point number.
Explicit(Quad to Int16) Converts a Quad to a Int16 value.
Explicit(Quad to Int32) Converts a Quad to a Int32 value.
Explicit(Quad to Int64) Converts a Quad to a long integer.
Explicit(Quad to SByte) Converts a Quad to a SByte value.
Explicit(Quad to Single) Converts a Quad to a single-precision floating-point number.
Explicit(Quad to UInt16) Converts a Quad to a UInt16 value.
Explicit(Quad to UInt32) Converts a Quad to an unsigned integer.
Explicit(Quad to UInt64) Converts a Quad to a long unsigned integer.
Explicit(Single to Quad) Converts a single-precision floating-point number to a Quad value.
Exponent(Quad, Quad) Represents the exponentiation operator.
Exponent(Quad, Int32) Represents the exponentiation operator.
Exponentiation(Quad, Quad) Represents the exponentiation operator.
Exponentiation(Quad, Int32) Represents the exponentiation operator.
GreaterThan(Quad, Quad) Returns whether left quadruple-precision floating-point number is greater than another.
GreaterThanOrEqual(Quad, Quad) Returns whether left quadruple-precision floating-point number is greater than or equal to another.
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.
Inequality(Quad, Quad) Returns whether left quadruple-precision floating-point number is not equal to another.
LessThan(Quad, Quad) Returns whether left quadruple-precision floating-point number is less than another.
LessThanOrEqual(Quad, Quad) Returns whether left quadruple-precision floating-point number is less than or equal to another.
Modulus(Quad, Quad) Computes the remainder after dividing one quadruple-precision floating-point number by another.
Multiply(Quad, Quad) Multiplies two quadruple-precision floating-point numbers.
Subtraction(Quad, Quad) Subtracts one quadruple-precision floating-point number from another.
UnaryNegation(Quad) Returns the quadruple-precision number with the opposite sign.

See Also