floats

float32: compare, print

float64: compare, print

float80: compare

struct float32: Copyable, Comparable, Printable, Addable

A 32-bit floating-point number.

compare

Ordering compare(float32& other)

Compares this value to another.

print

void print(OutputStream& stream)

Writes this value to the given stream, using the shortest representation that parses back to the same value.

struct float64: Copyable, Comparable, Printable, Addable

A 64-bit floating-point number.

compare

Ordering compare(float64& other)

Compares this value to another.

print

void print(OutputStream& stream)

Writes this value to the given stream, using the shortest representation that parses back to the same value.

struct float80: Copyable, Comparable

An 80-bit floating-point number.

compare

Ordering compare(float80& other)

Compares this value to another.