Trait num_traits::pow::Pow[][src]

pub trait Pow<RHS> {
    type Output;
    fn pow(self, rhs: RHS) -> Self::Output;
}
Expand description

Binary operator for raising a value to a power.

Associated Types

The result after applying the operator.

Required methods

Returns self to the power rhs.

Examples

use num_traits::Pow;
assert_eq!(Pow::pow(10u32, 2u32), 100);

Implementations on Foreign Types

Implementors

impl<'a> Pow<u8> for &'a BigInt

impl<'a, 'b> Pow<&'b u8> for &'a BigInt

impl<'a> Pow<u16> for &'a BigInt

impl<'a, 'b> Pow<&'b u16> for &'a BigInt

impl<'a> Pow<u32> for &'a BigInt

impl<'a, 'b> Pow<&'b u32> for &'a BigInt

impl<'a> Pow<u64> for &'a BigInt

impl<'a, 'b> Pow<&'b u64> for &'a BigInt

impl<'a> Pow<usize> for &'a BigInt

impl<'a, 'b> Pow<&'b usize> for &'a BigInt

impl<'a> Pow<u128> for &'a BigInt

impl<'a, 'b> Pow<&'b u128> for &'a BigInt

impl<'a> Pow<BigUint> for &'a BigInt

impl<'a, 'b> Pow<&'b BigUint> for &'a BigInt

impl<'a> Pow<BigUint> for &'a BigUint

impl<'a, 'b> Pow<&'b BigUint> for &'a BigUint

impl<'a> Pow<u8> for &'a BigUint

impl<'a, 'b> Pow<&'b u8> for &'a BigUint

impl<'a> Pow<u16> for &'a BigUint

impl<'a, 'b> Pow<&'b u16> for &'a BigUint

impl<'a> Pow<u32> for &'a BigUint

impl<'a, 'b> Pow<&'b u32> for &'a BigUint

impl<'a> Pow<u64> for &'a BigUint

impl<'a, 'b> Pow<&'b u64> for &'a BigUint

impl<'a> Pow<usize> for &'a BigUint

impl<'a, 'b> Pow<&'b usize> for &'a BigUint

impl<'a> Pow<u128> for &'a BigUint

impl<'a, 'b> Pow<&'b u128> for &'a BigUint