Enum rug::float::Constant[][src]

pub enum Constant {
    Log2,
    Pi,
    Euler,
    Catalan,
    // some variants omitted
}

The available floating-point constants.

Examples

use rug::float::Constant;
use rug::Float;

let log2 = Float::with_val(53, Constant::Log2);
let pi = Float::with_val(53, Constant::Pi);
let euler = Float::with_val(53, Constant::Euler);
let catalan = Float::with_val(53, Constant::Catalan);

assert_eq!(log2.to_string_radix(10, Some(5)), "6.9315e-1");
assert_eq!(pi.to_string_radix(10, Some(5)), "3.1416");
assert_eq!(euler.to_string_radix(10, Some(5)), "5.7722e-1");
assert_eq!(catalan.to_string_radix(10, Some(5)), "9.1597e-1");

Variants

The logarithm of two, 0.693...

The value of pi, 3.141...

Euler’s constant, 0.577...

Catalan’s constant, 0.915...

Trait Implementations

impl AssignRound<Constant> for Float
[src]

The rounding method.

The direction from rounding.

Peforms the assignment. Read more

impl<'a> AssignRound<&'a Constant> for Float
[src]

The rounding method.

The direction from rounding.

Peforms the assignment. Read more

impl Clone for Constant
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Constant
[src]

impl Debug for Constant
[src]

Formats the value using the given formatter. Read more

impl Eq for Constant
[src]

impl Hash for Constant
[src]

Feeds this value into the given [Hasher]. Read more

Feeds a slice of this type into the given [Hasher]. Read more

impl Ord for Constant
[src]

This method returns an Ordering between self and other. Read more

Compares and returns the maximum of two values. Read more

Compares and returns the minimum of two values. Read more

impl PartialEq for Constant
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

impl PartialOrd for Constant
[src]

This method returns an ordering between self and other values if one exists. Read more

This method tests less than (for self and other) and is used by the < operator. Read more

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more

This method tests greater than (for self and other) and is used by the > operator. Read more

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more

Auto Trait Implementations

impl Send for Constant

impl Sync for Constant