pub trait Add<Rhs = Self> {
type Output;
// Required method
fn add(self, rhs: Rhs) -> Self::Output;
}
Expand description
The addition operator +
.
Note that Rhs
is Self
by default, but this is not mandatory. For
example, std::time::SystemTime
implements Add<Duration>
, which permits
operations of the form SystemTime = SystemTime + Duration
.
§Examples
§Add
able points
use std::ops::Add;
#[derive(Debug, Copy, Clone, PartialEq)]
struct Point {
x: i32,
y: i32,
}
impl Add for Point {
type Output = Self;
fn add(self, other: Self) -> Self {
Self {
x: self.x + other.x,
y: self.y + other.y,
}
}
}
assert_eq!(Point { x: 1, y: 0 } + Point { x: 2, y: 3 },
Point { x: 3, y: 3 });
§Implementing Add
with generics
Here is an example of the same Point
struct implementing the Add
trait
using generics.
use std::ops::Add;
#[derive(Debug, Copy, Clone, PartialEq)]
struct Point<T> {
x: T,
y: T,
}
// Notice that the implementation uses the associated type `Output`.
impl<T: Add<Output = T>> Add for Point<T> {
type Output = Self;
fn add(self, other: Self) -> Self::Output {
Self {
x: self.x + other.x,
y: self.y + other.y,
}
}
}
assert_eq!(Point { x: 1, y: 0 } + Point { x: 2, y: 3 },
Point { x: 3, y: 3 });
Required Associated Types§
Required Methods§
Implementors§
1.74.0 · Source§impl Add for Saturating<i8>
impl Add for Saturating<i8>
type Output = Saturating<i8>
1.74.0 · Source§impl Add for Saturating<i16>
impl Add for Saturating<i16>
type Output = Saturating<i16>
1.74.0 · Source§impl Add for Saturating<i32>
impl Add for Saturating<i32>
type Output = Saturating<i32>
1.74.0 · Source§impl Add for Saturating<i64>
impl Add for Saturating<i64>
type Output = Saturating<i64>
1.74.0 · Source§impl Add for Saturating<i128>
impl Add for Saturating<i128>
type Output = Saturating<i128>
1.74.0 · Source§impl Add for Saturating<isize>
impl Add for Saturating<isize>
type Output = Saturating<isize>
1.74.0 · Source§impl Add for Saturating<u8>
impl Add for Saturating<u8>
type Output = Saturating<u8>
1.74.0 · Source§impl Add for Saturating<u16>
impl Add for Saturating<u16>
type Output = Saturating<u16>
1.74.0 · Source§impl Add for Saturating<u32>
impl Add for Saturating<u32>
type Output = Saturating<u32>
1.74.0 · Source§impl Add for Saturating<u64>
impl Add for Saturating<u64>
type Output = Saturating<u64>
1.74.0 · Source§impl Add for Saturating<u128>
impl Add for Saturating<u128>
type Output = Saturating<u128>
1.74.0 · Source§impl Add for Saturating<usize>
impl Add for Saturating<usize>
type Output = Saturating<usize>
Source§impl Add for EdwardsPoint
impl Add for EdwardsPoint
type Output = EdwardsPoint
Source§impl Add for RistrettoPoint
impl Add for RistrettoPoint
type Output = RistrettoPoint
Source§impl Add for ConstDecimals<0>
impl Add for ConstDecimals<0>
type Output = ConstDecimals<0>
Source§impl Add for ConstDecimals<1>
impl Add for ConstDecimals<1>
type Output = ConstDecimals<2>
Source§impl Add for ConstDecimals<2>
impl Add for ConstDecimals<2>
type Output = ConstDecimals<4>
Source§impl Add for ConstDecimals<3>
impl Add for ConstDecimals<3>
type Output = ConstDecimals<6>
Source§impl Add for ConstDecimals<4>
impl Add for ConstDecimals<4>
type Output = ConstDecimals<8>
Source§impl Add for ConstDecimals<5>
impl Add for ConstDecimals<5>
type Output = ConstDecimals<10>
Source§impl Add for ConstDecimals<6>
impl Add for ConstDecimals<6>
type Output = ConstDecimals<12>
Source§impl Add for ConstDecimals<7>
impl Add for ConstDecimals<7>
type Output = ConstDecimals<14>
Source§impl Add for ConstDecimals<8>
impl Add for ConstDecimals<8>
type Output = ConstDecimals<16>
Source§impl Add for ConstDecimals<9>
impl Add for ConstDecimals<9>
type Output = ConstDecimals<18>
Source§impl Add for ConstDecimals<10>
impl Add for ConstDecimals<10>
type Output = ConstDecimals<20>
Source§impl Add for ConstDecimals<11>
impl Add for ConstDecimals<11>
type Output = ConstDecimals<22>
Source§impl Add for ConstDecimals<12>
impl Add for ConstDecimals<12>
type Output = ConstDecimals<24>
Source§impl Add for ConstDecimals<13>
impl Add for ConstDecimals<13>
type Output = ConstDecimals<26>
Source§impl Add for ConstDecimals<14>
impl Add for ConstDecimals<14>
type Output = ConstDecimals<28>
Source§impl Add for ConstDecimals<15>
impl Add for ConstDecimals<15>
type Output = ConstDecimals<30>
Source§impl Add for ConstDecimals<16>
impl Add for ConstDecimals<16>
type Output = ConstDecimals<32>
Source§impl Add for ConstDecimals<17>
impl Add for ConstDecimals<17>
type Output = ConstDecimals<34>
Source§impl Add for ConstDecimals<18>
impl Add for ConstDecimals<18>
type Output = ConstDecimals<36>
Source§impl Add for ConstDecimals<19>
impl Add for ConstDecimals<19>
type Output = ConstDecimals<38>
Source§impl Add for ConstDecimals<20>
impl Add for ConstDecimals<20>
type Output = ConstDecimals<40>
Source§impl Add for ConstDecimals<21>
impl Add for ConstDecimals<21>
type Output = ConstDecimals<42>
Source§impl Add for ConstDecimals<22>
impl Add for ConstDecimals<22>
type Output = ConstDecimals<44>
Source§impl Add for ConstDecimals<23>
impl Add for ConstDecimals<23>
type Output = ConstDecimals<46>
Source§impl Add for ConstDecimals<24>
impl Add for ConstDecimals<24>
type Output = ConstDecimals<48>
Source§impl Add for ConstDecimals<25>
impl Add for ConstDecimals<25>
type Output = ConstDecimals<50>
Source§impl Add for ConstDecimals<26>
impl Add for ConstDecimals<26>
type Output = ConstDecimals<52>
Source§impl Add for ConstDecimals<27>
impl Add for ConstDecimals<27>
type Output = ConstDecimals<54>
Source§impl Add for ConstDecimals<28>
impl Add for ConstDecimals<28>
type Output = ConstDecimals<56>
Source§impl Add for ConstDecimals<29>
impl Add for ConstDecimals<29>
type Output = ConstDecimals<58>
Source§impl Add for ConstDecimals<30>
impl Add for ConstDecimals<30>
type Output = ConstDecimals<60>
Source§impl Add for ConstDecimals<31>
impl Add for ConstDecimals<31>
type Output = ConstDecimals<62>
Source§impl Add for ConstDecimals<32>
impl Add for ConstDecimals<32>
type Output = ConstDecimals<64>
Source§impl Add for ConstDecimals<33>
impl Add for ConstDecimals<33>
type Output = ConstDecimals<66>
Source§impl Add for ConstDecimals<34>
impl Add for ConstDecimals<34>
type Output = ConstDecimals<68>
Source§impl Add for ConstDecimals<35>
impl Add for ConstDecimals<35>
type Output = ConstDecimals<70>
Source§impl Add for ConstDecimals<36>
impl Add for ConstDecimals<36>
type Output = ConstDecimals<72>
Source§impl Add for ConstDecimals<37>
impl Add for ConstDecimals<37>
type Output = ConstDecimals<74>
Source§impl Add for ConstDecimals<38>
impl Add for ConstDecimals<38>
type Output = ConstDecimals<76>
Source§impl Add for ConstDecimals<39>
impl Add for ConstDecimals<39>
type Output = ConstDecimals<78>
Source§impl Add for ConstDecimals<40>
impl Add for ConstDecimals<40>
type Output = ConstDecimals<80>
Source§impl Add for ConstDecimals<41>
impl Add for ConstDecimals<41>
type Output = ConstDecimals<82>
Source§impl Add for ConstDecimals<42>
impl Add for ConstDecimals<42>
type Output = ConstDecimals<84>
Source§impl Add for ConstDecimals<43>
impl Add for ConstDecimals<43>
type Output = ConstDecimals<86>
Source§impl Add for ConstDecimals<44>
impl Add for ConstDecimals<44>
type Output = ConstDecimals<88>
Source§impl Add for ConstDecimals<45>
impl Add for ConstDecimals<45>
type Output = ConstDecimals<90>
Source§impl Add for ConstDecimals<46>
impl Add for ConstDecimals<46>
type Output = ConstDecimals<92>
Source§impl Add for ConstDecimals<47>
impl Add for ConstDecimals<47>
type Output = ConstDecimals<94>
Source§impl Add for ConstDecimals<48>
impl Add for ConstDecimals<48>
type Output = ConstDecimals<96>
Source§impl Add for ConstDecimals<49>
impl Add for ConstDecimals<49>
type Output = ConstDecimals<98>
Source§impl Add for ConstDecimals<50>
impl Add for ConstDecimals<50>
type Output = ConstDecimals<100>
Source§impl Add for ConstDecimals<51>
impl Add for ConstDecimals<51>
type Output = ConstDecimals<102>
Source§impl Add for ConstDecimals<52>
impl Add for ConstDecimals<52>
type Output = ConstDecimals<104>
Source§impl Add for ConstDecimals<53>
impl Add for ConstDecimals<53>
type Output = ConstDecimals<106>
Source§impl Add for ConstDecimals<54>
impl Add for ConstDecimals<54>
type Output = ConstDecimals<108>
Source§impl Add for ConstDecimals<55>
impl Add for ConstDecimals<55>
type Output = ConstDecimals<110>
Source§impl Add for ConstDecimals<56>
impl Add for ConstDecimals<56>
type Output = ConstDecimals<112>
Source§impl Add for ConstDecimals<57>
impl Add for ConstDecimals<57>
type Output = ConstDecimals<114>
Source§impl Add for ConstDecimals<58>
impl Add for ConstDecimals<58>
type Output = ConstDecimals<116>
Source§impl Add for ConstDecimals<59>
impl Add for ConstDecimals<59>
type Output = ConstDecimals<118>
Source§impl Add for ConstDecimals<60>
impl Add for ConstDecimals<60>
type Output = ConstDecimals<120>
Source§impl Add for ConstDecimals<61>
impl Add for ConstDecimals<61>
type Output = ConstDecimals<122>
Source§impl Add for ConstDecimals<62>
impl Add for ConstDecimals<62>
type Output = ConstDecimals<124>
Source§impl Add for ConstDecimals<63>
impl Add for ConstDecimals<63>
type Output = ConstDecimals<126>
Source§impl Add for ConstDecimals<64>
impl Add for ConstDecimals<64>
type Output = ConstDecimals<128>
1.0.0 · Source§impl Add<&str> for String
Implements the +
operator for concatenating two strings.
impl Add<&str> for String
Implements the +
operator for concatenating two strings.
This consumes the String
on the left-hand side and re-uses its buffer (growing it if
necessary). This is done to avoid allocating a new String
and copying the entire contents on
every operation, which would lead to O(n^2) running time when building an n-byte string by
repeated concatenation.
The string on the right-hand side is only borrowed; its contents are copied into the returned
String
.
§Examples
Concatenating two String
s takes the first by value and borrows the second:
let a = String::from("hello");
let b = String::from(" world");
let c = a + &b;
// `a` is moved and can no longer be used here.
If you want to keep using the first String
, you can clone it and append to the clone instead:
let a = String::from("hello");
let b = String::from(" world");
let c = a.clone() + &b;
// `a` is still valid here.
Concatenating &str
slices can be done by converting the first to a String
:
let a = "hello";
let b = " world";
let c = a.to_string() + b;
Source§impl Add<&u128> for &multiversx_sc_scenario::imports::RustBigUint
impl Add<&u128> for &multiversx_sc_scenario::imports::RustBigUint
Source§impl Add<&usize> for &multiversx_sc_scenario::imports::RustBigUint
impl Add<&usize> for &multiversx_sc_scenario::imports::RustBigUint
Source§impl Add<&usize> for multiversx_sc_scenario::imports::RustBigUint
impl Add<&usize> for multiversx_sc_scenario::imports::RustBigUint
1.74.0 · Source§impl Add<&Saturating<i8>> for &Saturating<i8>
impl Add<&Saturating<i8>> for &Saturating<i8>
1.74.0 · Source§impl Add<&Saturating<i8>> for Saturating<i8>
impl Add<&Saturating<i8>> for Saturating<i8>
1.74.0 · Source§impl Add<&Saturating<i16>> for &Saturating<i16>
impl Add<&Saturating<i16>> for &Saturating<i16>
1.74.0 · Source§impl Add<&Saturating<i16>> for Saturating<i16>
impl Add<&Saturating<i16>> for Saturating<i16>
1.74.0 · Source§impl Add<&Saturating<i32>> for &Saturating<i32>
impl Add<&Saturating<i32>> for &Saturating<i32>
1.74.0 · Source§impl Add<&Saturating<i32>> for Saturating<i32>
impl Add<&Saturating<i32>> for Saturating<i32>
1.74.0 · Source§impl Add<&Saturating<i64>> for &Saturating<i64>
impl Add<&Saturating<i64>> for &Saturating<i64>
1.74.0 · Source§impl Add<&Saturating<i64>> for Saturating<i64>
impl Add<&Saturating<i64>> for Saturating<i64>
1.74.0 · Source§impl Add<&Saturating<i128>> for &Saturating<i128>
impl Add<&Saturating<i128>> for &Saturating<i128>
1.74.0 · Source§impl Add<&Saturating<i128>> for Saturating<i128>
impl Add<&Saturating<i128>> for Saturating<i128>
1.74.0 · Source§impl Add<&Saturating<isize>> for &Saturating<isize>
impl Add<&Saturating<isize>> for &Saturating<isize>
1.74.0 · Source§impl Add<&Saturating<isize>> for Saturating<isize>
impl Add<&Saturating<isize>> for Saturating<isize>
1.74.0 · Source§impl Add<&Saturating<u8>> for &Saturating<u8>
impl Add<&Saturating<u8>> for &Saturating<u8>
1.74.0 · Source§impl Add<&Saturating<u8>> for Saturating<u8>
impl Add<&Saturating<u8>> for Saturating<u8>
1.74.0 · Source§impl Add<&Saturating<u16>> for &Saturating<u16>
impl Add<&Saturating<u16>> for &Saturating<u16>
1.74.0 · Source§impl Add<&Saturating<u16>> for Saturating<u16>
impl Add<&Saturating<u16>> for Saturating<u16>
1.74.0 · Source§impl Add<&Saturating<u32>> for &Saturating<u32>
impl Add<&Saturating<u32>> for &Saturating<u32>
1.74.0 · Source§impl Add<&Saturating<u32>> for Saturating<u32>
impl Add<&Saturating<u32>> for Saturating<u32>
1.74.0 · Source§impl Add<&Saturating<u64>> for &Saturating<u64>
impl Add<&Saturating<u64>> for &Saturating<u64>
1.74.0 · Source§impl Add<&Saturating<u64>> for Saturating<u64>
impl Add<&Saturating<u64>> for Saturating<u64>
1.74.0 · Source§impl Add<&Saturating<u128>> for &Saturating<u128>
impl Add<&Saturating<u128>> for &Saturating<u128>
1.74.0 · Source§impl Add<&Saturating<u128>> for Saturating<u128>
impl Add<&Saturating<u128>> for Saturating<u128>
1.74.0 · Source§impl Add<&Saturating<usize>> for &Saturating<usize>
impl Add<&Saturating<usize>> for &Saturating<usize>
1.74.0 · Source§impl Add<&Saturating<usize>> for Saturating<usize>
impl Add<&Saturating<usize>> for Saturating<usize>
Source§impl Add<&BigInt> for &multiversx_sc_scenario::imports::RustBigInt
impl Add<&BigInt> for &multiversx_sc_scenario::imports::RustBigInt
Source§impl Add<&BigUint> for &multiversx_sc_scenario::imports::RustBigUint
impl Add<&BigUint> for &multiversx_sc_scenario::imports::RustBigUint
Source§impl Add<&BigUint> for multiversx_sc_scenario::imports::RustBigUint
impl Add<&BigUint> for multiversx_sc_scenario::imports::RustBigUint
Source§impl Add<usize> for &multiversx_sc_scenario::imports::RustBigUint
impl Add<usize> for &multiversx_sc_scenario::imports::RustBigUint
1.8.0 · Source§impl Add<Duration> for SystemTime
impl Add<Duration> for SystemTime
type Output = SystemTime
Source§impl Add<ConstDecimals<0>> for ConstDecimals<1>
impl Add<ConstDecimals<0>> for ConstDecimals<1>
type Output = ConstDecimals<1>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<2>
impl Add<ConstDecimals<0>> for ConstDecimals<2>
type Output = ConstDecimals<2>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<3>
impl Add<ConstDecimals<0>> for ConstDecimals<3>
type Output = ConstDecimals<3>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<4>
impl Add<ConstDecimals<0>> for ConstDecimals<4>
type Output = ConstDecimals<4>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<5>
impl Add<ConstDecimals<0>> for ConstDecimals<5>
type Output = ConstDecimals<5>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<6>
impl Add<ConstDecimals<0>> for ConstDecimals<6>
type Output = ConstDecimals<6>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<7>
impl Add<ConstDecimals<0>> for ConstDecimals<7>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<8>
impl Add<ConstDecimals<0>> for ConstDecimals<8>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<9>
impl Add<ConstDecimals<0>> for ConstDecimals<9>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<10>
impl Add<ConstDecimals<0>> for ConstDecimals<10>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<11>
impl Add<ConstDecimals<0>> for ConstDecimals<11>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<12>
impl Add<ConstDecimals<0>> for ConstDecimals<12>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<13>
impl Add<ConstDecimals<0>> for ConstDecimals<13>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<14>
impl Add<ConstDecimals<0>> for ConstDecimals<14>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<15>
impl Add<ConstDecimals<0>> for ConstDecimals<15>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<16>
impl Add<ConstDecimals<0>> for ConstDecimals<16>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<17>
impl Add<ConstDecimals<0>> for ConstDecimals<17>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<18>
impl Add<ConstDecimals<0>> for ConstDecimals<18>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<19>
impl Add<ConstDecimals<0>> for ConstDecimals<19>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<20>
impl Add<ConstDecimals<0>> for ConstDecimals<20>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<21>
impl Add<ConstDecimals<0>> for ConstDecimals<21>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<22>
impl Add<ConstDecimals<0>> for ConstDecimals<22>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<23>
impl Add<ConstDecimals<0>> for ConstDecimals<23>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<24>
impl Add<ConstDecimals<0>> for ConstDecimals<24>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<25>
impl Add<ConstDecimals<0>> for ConstDecimals<25>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<26>
impl Add<ConstDecimals<0>> for ConstDecimals<26>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<27>
impl Add<ConstDecimals<0>> for ConstDecimals<27>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<28>
impl Add<ConstDecimals<0>> for ConstDecimals<28>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<29>
impl Add<ConstDecimals<0>> for ConstDecimals<29>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<30>
impl Add<ConstDecimals<0>> for ConstDecimals<30>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<31>
impl Add<ConstDecimals<0>> for ConstDecimals<31>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<32>
impl Add<ConstDecimals<0>> for ConstDecimals<32>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<33>
impl Add<ConstDecimals<0>> for ConstDecimals<33>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<34>
impl Add<ConstDecimals<0>> for ConstDecimals<34>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<35>
impl Add<ConstDecimals<0>> for ConstDecimals<35>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<36>
impl Add<ConstDecimals<0>> for ConstDecimals<36>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<37>
impl Add<ConstDecimals<0>> for ConstDecimals<37>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<38>
impl Add<ConstDecimals<0>> for ConstDecimals<38>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<39>
impl Add<ConstDecimals<0>> for ConstDecimals<39>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<40>
impl Add<ConstDecimals<0>> for ConstDecimals<40>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<41>
impl Add<ConstDecimals<0>> for ConstDecimals<41>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<42>
impl Add<ConstDecimals<0>> for ConstDecimals<42>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<43>
impl Add<ConstDecimals<0>> for ConstDecimals<43>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<44>
impl Add<ConstDecimals<0>> for ConstDecimals<44>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<45>
impl Add<ConstDecimals<0>> for ConstDecimals<45>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<46>
impl Add<ConstDecimals<0>> for ConstDecimals<46>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<47>
impl Add<ConstDecimals<0>> for ConstDecimals<47>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<48>
impl Add<ConstDecimals<0>> for ConstDecimals<48>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<49>
impl Add<ConstDecimals<0>> for ConstDecimals<49>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<50>
impl Add<ConstDecimals<0>> for ConstDecimals<50>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<51>
impl Add<ConstDecimals<0>> for ConstDecimals<51>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<52>
impl Add<ConstDecimals<0>> for ConstDecimals<52>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<53>
impl Add<ConstDecimals<0>> for ConstDecimals<53>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<54>
impl Add<ConstDecimals<0>> for ConstDecimals<54>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<55>
impl Add<ConstDecimals<0>> for ConstDecimals<55>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<56>
impl Add<ConstDecimals<0>> for ConstDecimals<56>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<57>
impl Add<ConstDecimals<0>> for ConstDecimals<57>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<58>
impl Add<ConstDecimals<0>> for ConstDecimals<58>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<59>
impl Add<ConstDecimals<0>> for ConstDecimals<59>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<60>
impl Add<ConstDecimals<0>> for ConstDecimals<60>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<61>
impl Add<ConstDecimals<0>> for ConstDecimals<61>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<62>
impl Add<ConstDecimals<0>> for ConstDecimals<62>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<63>
impl Add<ConstDecimals<0>> for ConstDecimals<63>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<0>> for ConstDecimals<64>
impl Add<ConstDecimals<0>> for ConstDecimals<64>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<0>
impl Add<ConstDecimals<1>> for ConstDecimals<0>
type Output = ConstDecimals<1>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<2>
impl Add<ConstDecimals<1>> for ConstDecimals<2>
type Output = ConstDecimals<3>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<3>
impl Add<ConstDecimals<1>> for ConstDecimals<3>
type Output = ConstDecimals<4>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<4>
impl Add<ConstDecimals<1>> for ConstDecimals<4>
type Output = ConstDecimals<5>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<5>
impl Add<ConstDecimals<1>> for ConstDecimals<5>
type Output = ConstDecimals<6>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<6>
impl Add<ConstDecimals<1>> for ConstDecimals<6>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<7>
impl Add<ConstDecimals<1>> for ConstDecimals<7>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<8>
impl Add<ConstDecimals<1>> for ConstDecimals<8>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<9>
impl Add<ConstDecimals<1>> for ConstDecimals<9>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<10>
impl Add<ConstDecimals<1>> for ConstDecimals<10>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<11>
impl Add<ConstDecimals<1>> for ConstDecimals<11>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<12>
impl Add<ConstDecimals<1>> for ConstDecimals<12>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<13>
impl Add<ConstDecimals<1>> for ConstDecimals<13>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<14>
impl Add<ConstDecimals<1>> for ConstDecimals<14>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<15>
impl Add<ConstDecimals<1>> for ConstDecimals<15>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<16>
impl Add<ConstDecimals<1>> for ConstDecimals<16>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<17>
impl Add<ConstDecimals<1>> for ConstDecimals<17>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<18>
impl Add<ConstDecimals<1>> for ConstDecimals<18>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<19>
impl Add<ConstDecimals<1>> for ConstDecimals<19>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<20>
impl Add<ConstDecimals<1>> for ConstDecimals<20>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<21>
impl Add<ConstDecimals<1>> for ConstDecimals<21>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<22>
impl Add<ConstDecimals<1>> for ConstDecimals<22>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<23>
impl Add<ConstDecimals<1>> for ConstDecimals<23>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<24>
impl Add<ConstDecimals<1>> for ConstDecimals<24>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<25>
impl Add<ConstDecimals<1>> for ConstDecimals<25>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<26>
impl Add<ConstDecimals<1>> for ConstDecimals<26>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<27>
impl Add<ConstDecimals<1>> for ConstDecimals<27>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<28>
impl Add<ConstDecimals<1>> for ConstDecimals<28>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<29>
impl Add<ConstDecimals<1>> for ConstDecimals<29>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<30>
impl Add<ConstDecimals<1>> for ConstDecimals<30>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<31>
impl Add<ConstDecimals<1>> for ConstDecimals<31>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<32>
impl Add<ConstDecimals<1>> for ConstDecimals<32>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<33>
impl Add<ConstDecimals<1>> for ConstDecimals<33>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<34>
impl Add<ConstDecimals<1>> for ConstDecimals<34>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<35>
impl Add<ConstDecimals<1>> for ConstDecimals<35>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<36>
impl Add<ConstDecimals<1>> for ConstDecimals<36>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<37>
impl Add<ConstDecimals<1>> for ConstDecimals<37>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<38>
impl Add<ConstDecimals<1>> for ConstDecimals<38>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<39>
impl Add<ConstDecimals<1>> for ConstDecimals<39>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<40>
impl Add<ConstDecimals<1>> for ConstDecimals<40>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<41>
impl Add<ConstDecimals<1>> for ConstDecimals<41>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<42>
impl Add<ConstDecimals<1>> for ConstDecimals<42>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<43>
impl Add<ConstDecimals<1>> for ConstDecimals<43>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<44>
impl Add<ConstDecimals<1>> for ConstDecimals<44>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<45>
impl Add<ConstDecimals<1>> for ConstDecimals<45>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<46>
impl Add<ConstDecimals<1>> for ConstDecimals<46>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<47>
impl Add<ConstDecimals<1>> for ConstDecimals<47>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<48>
impl Add<ConstDecimals<1>> for ConstDecimals<48>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<49>
impl Add<ConstDecimals<1>> for ConstDecimals<49>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<50>
impl Add<ConstDecimals<1>> for ConstDecimals<50>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<51>
impl Add<ConstDecimals<1>> for ConstDecimals<51>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<52>
impl Add<ConstDecimals<1>> for ConstDecimals<52>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<53>
impl Add<ConstDecimals<1>> for ConstDecimals<53>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<54>
impl Add<ConstDecimals<1>> for ConstDecimals<54>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<55>
impl Add<ConstDecimals<1>> for ConstDecimals<55>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<56>
impl Add<ConstDecimals<1>> for ConstDecimals<56>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<57>
impl Add<ConstDecimals<1>> for ConstDecimals<57>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<58>
impl Add<ConstDecimals<1>> for ConstDecimals<58>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<59>
impl Add<ConstDecimals<1>> for ConstDecimals<59>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<60>
impl Add<ConstDecimals<1>> for ConstDecimals<60>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<61>
impl Add<ConstDecimals<1>> for ConstDecimals<61>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<62>
impl Add<ConstDecimals<1>> for ConstDecimals<62>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<63>
impl Add<ConstDecimals<1>> for ConstDecimals<63>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<1>> for ConstDecimals<64>
impl Add<ConstDecimals<1>> for ConstDecimals<64>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<0>
impl Add<ConstDecimals<2>> for ConstDecimals<0>
type Output = ConstDecimals<2>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<1>
impl Add<ConstDecimals<2>> for ConstDecimals<1>
type Output = ConstDecimals<3>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<3>
impl Add<ConstDecimals<2>> for ConstDecimals<3>
type Output = ConstDecimals<5>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<4>
impl Add<ConstDecimals<2>> for ConstDecimals<4>
type Output = ConstDecimals<6>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<5>
impl Add<ConstDecimals<2>> for ConstDecimals<5>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<6>
impl Add<ConstDecimals<2>> for ConstDecimals<6>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<7>
impl Add<ConstDecimals<2>> for ConstDecimals<7>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<8>
impl Add<ConstDecimals<2>> for ConstDecimals<8>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<9>
impl Add<ConstDecimals<2>> for ConstDecimals<9>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<10>
impl Add<ConstDecimals<2>> for ConstDecimals<10>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<11>
impl Add<ConstDecimals<2>> for ConstDecimals<11>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<12>
impl Add<ConstDecimals<2>> for ConstDecimals<12>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<13>
impl Add<ConstDecimals<2>> for ConstDecimals<13>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<14>
impl Add<ConstDecimals<2>> for ConstDecimals<14>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<15>
impl Add<ConstDecimals<2>> for ConstDecimals<15>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<16>
impl Add<ConstDecimals<2>> for ConstDecimals<16>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<17>
impl Add<ConstDecimals<2>> for ConstDecimals<17>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<18>
impl Add<ConstDecimals<2>> for ConstDecimals<18>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<19>
impl Add<ConstDecimals<2>> for ConstDecimals<19>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<20>
impl Add<ConstDecimals<2>> for ConstDecimals<20>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<21>
impl Add<ConstDecimals<2>> for ConstDecimals<21>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<22>
impl Add<ConstDecimals<2>> for ConstDecimals<22>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<23>
impl Add<ConstDecimals<2>> for ConstDecimals<23>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<24>
impl Add<ConstDecimals<2>> for ConstDecimals<24>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<25>
impl Add<ConstDecimals<2>> for ConstDecimals<25>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<26>
impl Add<ConstDecimals<2>> for ConstDecimals<26>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<27>
impl Add<ConstDecimals<2>> for ConstDecimals<27>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<28>
impl Add<ConstDecimals<2>> for ConstDecimals<28>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<29>
impl Add<ConstDecimals<2>> for ConstDecimals<29>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<30>
impl Add<ConstDecimals<2>> for ConstDecimals<30>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<31>
impl Add<ConstDecimals<2>> for ConstDecimals<31>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<32>
impl Add<ConstDecimals<2>> for ConstDecimals<32>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<33>
impl Add<ConstDecimals<2>> for ConstDecimals<33>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<34>
impl Add<ConstDecimals<2>> for ConstDecimals<34>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<35>
impl Add<ConstDecimals<2>> for ConstDecimals<35>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<36>
impl Add<ConstDecimals<2>> for ConstDecimals<36>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<37>
impl Add<ConstDecimals<2>> for ConstDecimals<37>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<38>
impl Add<ConstDecimals<2>> for ConstDecimals<38>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<39>
impl Add<ConstDecimals<2>> for ConstDecimals<39>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<40>
impl Add<ConstDecimals<2>> for ConstDecimals<40>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<41>
impl Add<ConstDecimals<2>> for ConstDecimals<41>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<42>
impl Add<ConstDecimals<2>> for ConstDecimals<42>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<43>
impl Add<ConstDecimals<2>> for ConstDecimals<43>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<44>
impl Add<ConstDecimals<2>> for ConstDecimals<44>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<45>
impl Add<ConstDecimals<2>> for ConstDecimals<45>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<46>
impl Add<ConstDecimals<2>> for ConstDecimals<46>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<47>
impl Add<ConstDecimals<2>> for ConstDecimals<47>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<48>
impl Add<ConstDecimals<2>> for ConstDecimals<48>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<49>
impl Add<ConstDecimals<2>> for ConstDecimals<49>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<50>
impl Add<ConstDecimals<2>> for ConstDecimals<50>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<51>
impl Add<ConstDecimals<2>> for ConstDecimals<51>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<52>
impl Add<ConstDecimals<2>> for ConstDecimals<52>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<53>
impl Add<ConstDecimals<2>> for ConstDecimals<53>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<54>
impl Add<ConstDecimals<2>> for ConstDecimals<54>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<55>
impl Add<ConstDecimals<2>> for ConstDecimals<55>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<56>
impl Add<ConstDecimals<2>> for ConstDecimals<56>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<57>
impl Add<ConstDecimals<2>> for ConstDecimals<57>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<58>
impl Add<ConstDecimals<2>> for ConstDecimals<58>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<59>
impl Add<ConstDecimals<2>> for ConstDecimals<59>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<60>
impl Add<ConstDecimals<2>> for ConstDecimals<60>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<61>
impl Add<ConstDecimals<2>> for ConstDecimals<61>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<62>
impl Add<ConstDecimals<2>> for ConstDecimals<62>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<63>
impl Add<ConstDecimals<2>> for ConstDecimals<63>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<2>> for ConstDecimals<64>
impl Add<ConstDecimals<2>> for ConstDecimals<64>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<0>
impl Add<ConstDecimals<3>> for ConstDecimals<0>
type Output = ConstDecimals<3>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<1>
impl Add<ConstDecimals<3>> for ConstDecimals<1>
type Output = ConstDecimals<4>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<2>
impl Add<ConstDecimals<3>> for ConstDecimals<2>
type Output = ConstDecimals<5>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<4>
impl Add<ConstDecimals<3>> for ConstDecimals<4>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<5>
impl Add<ConstDecimals<3>> for ConstDecimals<5>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<6>
impl Add<ConstDecimals<3>> for ConstDecimals<6>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<7>
impl Add<ConstDecimals<3>> for ConstDecimals<7>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<8>
impl Add<ConstDecimals<3>> for ConstDecimals<8>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<9>
impl Add<ConstDecimals<3>> for ConstDecimals<9>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<10>
impl Add<ConstDecimals<3>> for ConstDecimals<10>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<11>
impl Add<ConstDecimals<3>> for ConstDecimals<11>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<12>
impl Add<ConstDecimals<3>> for ConstDecimals<12>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<13>
impl Add<ConstDecimals<3>> for ConstDecimals<13>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<14>
impl Add<ConstDecimals<3>> for ConstDecimals<14>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<15>
impl Add<ConstDecimals<3>> for ConstDecimals<15>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<16>
impl Add<ConstDecimals<3>> for ConstDecimals<16>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<17>
impl Add<ConstDecimals<3>> for ConstDecimals<17>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<18>
impl Add<ConstDecimals<3>> for ConstDecimals<18>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<19>
impl Add<ConstDecimals<3>> for ConstDecimals<19>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<20>
impl Add<ConstDecimals<3>> for ConstDecimals<20>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<21>
impl Add<ConstDecimals<3>> for ConstDecimals<21>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<22>
impl Add<ConstDecimals<3>> for ConstDecimals<22>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<23>
impl Add<ConstDecimals<3>> for ConstDecimals<23>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<24>
impl Add<ConstDecimals<3>> for ConstDecimals<24>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<25>
impl Add<ConstDecimals<3>> for ConstDecimals<25>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<26>
impl Add<ConstDecimals<3>> for ConstDecimals<26>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<27>
impl Add<ConstDecimals<3>> for ConstDecimals<27>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<28>
impl Add<ConstDecimals<3>> for ConstDecimals<28>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<29>
impl Add<ConstDecimals<3>> for ConstDecimals<29>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<30>
impl Add<ConstDecimals<3>> for ConstDecimals<30>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<31>
impl Add<ConstDecimals<3>> for ConstDecimals<31>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<32>
impl Add<ConstDecimals<3>> for ConstDecimals<32>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<33>
impl Add<ConstDecimals<3>> for ConstDecimals<33>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<34>
impl Add<ConstDecimals<3>> for ConstDecimals<34>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<35>
impl Add<ConstDecimals<3>> for ConstDecimals<35>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<36>
impl Add<ConstDecimals<3>> for ConstDecimals<36>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<37>
impl Add<ConstDecimals<3>> for ConstDecimals<37>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<38>
impl Add<ConstDecimals<3>> for ConstDecimals<38>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<39>
impl Add<ConstDecimals<3>> for ConstDecimals<39>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<40>
impl Add<ConstDecimals<3>> for ConstDecimals<40>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<41>
impl Add<ConstDecimals<3>> for ConstDecimals<41>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<42>
impl Add<ConstDecimals<3>> for ConstDecimals<42>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<43>
impl Add<ConstDecimals<3>> for ConstDecimals<43>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<44>
impl Add<ConstDecimals<3>> for ConstDecimals<44>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<45>
impl Add<ConstDecimals<3>> for ConstDecimals<45>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<46>
impl Add<ConstDecimals<3>> for ConstDecimals<46>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<47>
impl Add<ConstDecimals<3>> for ConstDecimals<47>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<48>
impl Add<ConstDecimals<3>> for ConstDecimals<48>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<49>
impl Add<ConstDecimals<3>> for ConstDecimals<49>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<50>
impl Add<ConstDecimals<3>> for ConstDecimals<50>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<51>
impl Add<ConstDecimals<3>> for ConstDecimals<51>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<52>
impl Add<ConstDecimals<3>> for ConstDecimals<52>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<53>
impl Add<ConstDecimals<3>> for ConstDecimals<53>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<54>
impl Add<ConstDecimals<3>> for ConstDecimals<54>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<55>
impl Add<ConstDecimals<3>> for ConstDecimals<55>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<56>
impl Add<ConstDecimals<3>> for ConstDecimals<56>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<57>
impl Add<ConstDecimals<3>> for ConstDecimals<57>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<58>
impl Add<ConstDecimals<3>> for ConstDecimals<58>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<59>
impl Add<ConstDecimals<3>> for ConstDecimals<59>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<60>
impl Add<ConstDecimals<3>> for ConstDecimals<60>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<61>
impl Add<ConstDecimals<3>> for ConstDecimals<61>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<62>
impl Add<ConstDecimals<3>> for ConstDecimals<62>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<63>
impl Add<ConstDecimals<3>> for ConstDecimals<63>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<3>> for ConstDecimals<64>
impl Add<ConstDecimals<3>> for ConstDecimals<64>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<0>
impl Add<ConstDecimals<4>> for ConstDecimals<0>
type Output = ConstDecimals<4>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<1>
impl Add<ConstDecimals<4>> for ConstDecimals<1>
type Output = ConstDecimals<5>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<2>
impl Add<ConstDecimals<4>> for ConstDecimals<2>
type Output = ConstDecimals<6>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<3>
impl Add<ConstDecimals<4>> for ConstDecimals<3>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<5>
impl Add<ConstDecimals<4>> for ConstDecimals<5>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<6>
impl Add<ConstDecimals<4>> for ConstDecimals<6>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<7>
impl Add<ConstDecimals<4>> for ConstDecimals<7>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<8>
impl Add<ConstDecimals<4>> for ConstDecimals<8>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<9>
impl Add<ConstDecimals<4>> for ConstDecimals<9>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<10>
impl Add<ConstDecimals<4>> for ConstDecimals<10>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<11>
impl Add<ConstDecimals<4>> for ConstDecimals<11>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<12>
impl Add<ConstDecimals<4>> for ConstDecimals<12>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<13>
impl Add<ConstDecimals<4>> for ConstDecimals<13>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<14>
impl Add<ConstDecimals<4>> for ConstDecimals<14>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<15>
impl Add<ConstDecimals<4>> for ConstDecimals<15>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<16>
impl Add<ConstDecimals<4>> for ConstDecimals<16>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<17>
impl Add<ConstDecimals<4>> for ConstDecimals<17>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<18>
impl Add<ConstDecimals<4>> for ConstDecimals<18>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<19>
impl Add<ConstDecimals<4>> for ConstDecimals<19>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<20>
impl Add<ConstDecimals<4>> for ConstDecimals<20>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<21>
impl Add<ConstDecimals<4>> for ConstDecimals<21>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<22>
impl Add<ConstDecimals<4>> for ConstDecimals<22>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<23>
impl Add<ConstDecimals<4>> for ConstDecimals<23>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<24>
impl Add<ConstDecimals<4>> for ConstDecimals<24>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<25>
impl Add<ConstDecimals<4>> for ConstDecimals<25>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<26>
impl Add<ConstDecimals<4>> for ConstDecimals<26>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<27>
impl Add<ConstDecimals<4>> for ConstDecimals<27>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<28>
impl Add<ConstDecimals<4>> for ConstDecimals<28>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<29>
impl Add<ConstDecimals<4>> for ConstDecimals<29>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<30>
impl Add<ConstDecimals<4>> for ConstDecimals<30>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<31>
impl Add<ConstDecimals<4>> for ConstDecimals<31>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<32>
impl Add<ConstDecimals<4>> for ConstDecimals<32>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<33>
impl Add<ConstDecimals<4>> for ConstDecimals<33>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<34>
impl Add<ConstDecimals<4>> for ConstDecimals<34>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<35>
impl Add<ConstDecimals<4>> for ConstDecimals<35>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<36>
impl Add<ConstDecimals<4>> for ConstDecimals<36>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<37>
impl Add<ConstDecimals<4>> for ConstDecimals<37>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<38>
impl Add<ConstDecimals<4>> for ConstDecimals<38>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<39>
impl Add<ConstDecimals<4>> for ConstDecimals<39>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<40>
impl Add<ConstDecimals<4>> for ConstDecimals<40>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<41>
impl Add<ConstDecimals<4>> for ConstDecimals<41>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<42>
impl Add<ConstDecimals<4>> for ConstDecimals<42>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<43>
impl Add<ConstDecimals<4>> for ConstDecimals<43>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<44>
impl Add<ConstDecimals<4>> for ConstDecimals<44>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<45>
impl Add<ConstDecimals<4>> for ConstDecimals<45>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<46>
impl Add<ConstDecimals<4>> for ConstDecimals<46>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<47>
impl Add<ConstDecimals<4>> for ConstDecimals<47>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<48>
impl Add<ConstDecimals<4>> for ConstDecimals<48>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<49>
impl Add<ConstDecimals<4>> for ConstDecimals<49>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<50>
impl Add<ConstDecimals<4>> for ConstDecimals<50>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<51>
impl Add<ConstDecimals<4>> for ConstDecimals<51>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<52>
impl Add<ConstDecimals<4>> for ConstDecimals<52>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<53>
impl Add<ConstDecimals<4>> for ConstDecimals<53>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<54>
impl Add<ConstDecimals<4>> for ConstDecimals<54>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<55>
impl Add<ConstDecimals<4>> for ConstDecimals<55>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<56>
impl Add<ConstDecimals<4>> for ConstDecimals<56>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<57>
impl Add<ConstDecimals<4>> for ConstDecimals<57>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<58>
impl Add<ConstDecimals<4>> for ConstDecimals<58>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<59>
impl Add<ConstDecimals<4>> for ConstDecimals<59>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<60>
impl Add<ConstDecimals<4>> for ConstDecimals<60>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<61>
impl Add<ConstDecimals<4>> for ConstDecimals<61>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<62>
impl Add<ConstDecimals<4>> for ConstDecimals<62>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<63>
impl Add<ConstDecimals<4>> for ConstDecimals<63>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<4>> for ConstDecimals<64>
impl Add<ConstDecimals<4>> for ConstDecimals<64>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<0>
impl Add<ConstDecimals<5>> for ConstDecimals<0>
type Output = ConstDecimals<5>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<1>
impl Add<ConstDecimals<5>> for ConstDecimals<1>
type Output = ConstDecimals<6>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<2>
impl Add<ConstDecimals<5>> for ConstDecimals<2>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<3>
impl Add<ConstDecimals<5>> for ConstDecimals<3>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<4>
impl Add<ConstDecimals<5>> for ConstDecimals<4>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<6>
impl Add<ConstDecimals<5>> for ConstDecimals<6>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<7>
impl Add<ConstDecimals<5>> for ConstDecimals<7>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<8>
impl Add<ConstDecimals<5>> for ConstDecimals<8>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<9>
impl Add<ConstDecimals<5>> for ConstDecimals<9>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<10>
impl Add<ConstDecimals<5>> for ConstDecimals<10>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<11>
impl Add<ConstDecimals<5>> for ConstDecimals<11>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<12>
impl Add<ConstDecimals<5>> for ConstDecimals<12>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<13>
impl Add<ConstDecimals<5>> for ConstDecimals<13>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<14>
impl Add<ConstDecimals<5>> for ConstDecimals<14>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<15>
impl Add<ConstDecimals<5>> for ConstDecimals<15>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<16>
impl Add<ConstDecimals<5>> for ConstDecimals<16>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<17>
impl Add<ConstDecimals<5>> for ConstDecimals<17>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<18>
impl Add<ConstDecimals<5>> for ConstDecimals<18>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<19>
impl Add<ConstDecimals<5>> for ConstDecimals<19>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<20>
impl Add<ConstDecimals<5>> for ConstDecimals<20>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<21>
impl Add<ConstDecimals<5>> for ConstDecimals<21>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<22>
impl Add<ConstDecimals<5>> for ConstDecimals<22>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<23>
impl Add<ConstDecimals<5>> for ConstDecimals<23>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<24>
impl Add<ConstDecimals<5>> for ConstDecimals<24>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<25>
impl Add<ConstDecimals<5>> for ConstDecimals<25>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<26>
impl Add<ConstDecimals<5>> for ConstDecimals<26>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<27>
impl Add<ConstDecimals<5>> for ConstDecimals<27>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<28>
impl Add<ConstDecimals<5>> for ConstDecimals<28>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<29>
impl Add<ConstDecimals<5>> for ConstDecimals<29>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<30>
impl Add<ConstDecimals<5>> for ConstDecimals<30>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<31>
impl Add<ConstDecimals<5>> for ConstDecimals<31>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<32>
impl Add<ConstDecimals<5>> for ConstDecimals<32>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<33>
impl Add<ConstDecimals<5>> for ConstDecimals<33>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<34>
impl Add<ConstDecimals<5>> for ConstDecimals<34>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<35>
impl Add<ConstDecimals<5>> for ConstDecimals<35>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<36>
impl Add<ConstDecimals<5>> for ConstDecimals<36>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<37>
impl Add<ConstDecimals<5>> for ConstDecimals<37>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<38>
impl Add<ConstDecimals<5>> for ConstDecimals<38>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<39>
impl Add<ConstDecimals<5>> for ConstDecimals<39>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<40>
impl Add<ConstDecimals<5>> for ConstDecimals<40>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<41>
impl Add<ConstDecimals<5>> for ConstDecimals<41>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<42>
impl Add<ConstDecimals<5>> for ConstDecimals<42>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<43>
impl Add<ConstDecimals<5>> for ConstDecimals<43>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<44>
impl Add<ConstDecimals<5>> for ConstDecimals<44>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<45>
impl Add<ConstDecimals<5>> for ConstDecimals<45>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<46>
impl Add<ConstDecimals<5>> for ConstDecimals<46>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<47>
impl Add<ConstDecimals<5>> for ConstDecimals<47>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<48>
impl Add<ConstDecimals<5>> for ConstDecimals<48>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<49>
impl Add<ConstDecimals<5>> for ConstDecimals<49>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<50>
impl Add<ConstDecimals<5>> for ConstDecimals<50>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<51>
impl Add<ConstDecimals<5>> for ConstDecimals<51>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<52>
impl Add<ConstDecimals<5>> for ConstDecimals<52>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<53>
impl Add<ConstDecimals<5>> for ConstDecimals<53>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<54>
impl Add<ConstDecimals<5>> for ConstDecimals<54>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<55>
impl Add<ConstDecimals<5>> for ConstDecimals<55>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<56>
impl Add<ConstDecimals<5>> for ConstDecimals<56>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<57>
impl Add<ConstDecimals<5>> for ConstDecimals<57>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<58>
impl Add<ConstDecimals<5>> for ConstDecimals<58>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<59>
impl Add<ConstDecimals<5>> for ConstDecimals<59>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<60>
impl Add<ConstDecimals<5>> for ConstDecimals<60>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<61>
impl Add<ConstDecimals<5>> for ConstDecimals<61>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<62>
impl Add<ConstDecimals<5>> for ConstDecimals<62>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<63>
impl Add<ConstDecimals<5>> for ConstDecimals<63>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<5>> for ConstDecimals<64>
impl Add<ConstDecimals<5>> for ConstDecimals<64>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<0>
impl Add<ConstDecimals<6>> for ConstDecimals<0>
type Output = ConstDecimals<6>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<1>
impl Add<ConstDecimals<6>> for ConstDecimals<1>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<2>
impl Add<ConstDecimals<6>> for ConstDecimals<2>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<3>
impl Add<ConstDecimals<6>> for ConstDecimals<3>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<4>
impl Add<ConstDecimals<6>> for ConstDecimals<4>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<5>
impl Add<ConstDecimals<6>> for ConstDecimals<5>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<7>
impl Add<ConstDecimals<6>> for ConstDecimals<7>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<8>
impl Add<ConstDecimals<6>> for ConstDecimals<8>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<9>
impl Add<ConstDecimals<6>> for ConstDecimals<9>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<10>
impl Add<ConstDecimals<6>> for ConstDecimals<10>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<11>
impl Add<ConstDecimals<6>> for ConstDecimals<11>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<12>
impl Add<ConstDecimals<6>> for ConstDecimals<12>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<13>
impl Add<ConstDecimals<6>> for ConstDecimals<13>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<14>
impl Add<ConstDecimals<6>> for ConstDecimals<14>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<15>
impl Add<ConstDecimals<6>> for ConstDecimals<15>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<16>
impl Add<ConstDecimals<6>> for ConstDecimals<16>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<17>
impl Add<ConstDecimals<6>> for ConstDecimals<17>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<18>
impl Add<ConstDecimals<6>> for ConstDecimals<18>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<19>
impl Add<ConstDecimals<6>> for ConstDecimals<19>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<20>
impl Add<ConstDecimals<6>> for ConstDecimals<20>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<21>
impl Add<ConstDecimals<6>> for ConstDecimals<21>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<22>
impl Add<ConstDecimals<6>> for ConstDecimals<22>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<23>
impl Add<ConstDecimals<6>> for ConstDecimals<23>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<24>
impl Add<ConstDecimals<6>> for ConstDecimals<24>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<25>
impl Add<ConstDecimals<6>> for ConstDecimals<25>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<26>
impl Add<ConstDecimals<6>> for ConstDecimals<26>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<27>
impl Add<ConstDecimals<6>> for ConstDecimals<27>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<28>
impl Add<ConstDecimals<6>> for ConstDecimals<28>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<29>
impl Add<ConstDecimals<6>> for ConstDecimals<29>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<30>
impl Add<ConstDecimals<6>> for ConstDecimals<30>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<31>
impl Add<ConstDecimals<6>> for ConstDecimals<31>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<32>
impl Add<ConstDecimals<6>> for ConstDecimals<32>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<33>
impl Add<ConstDecimals<6>> for ConstDecimals<33>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<34>
impl Add<ConstDecimals<6>> for ConstDecimals<34>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<35>
impl Add<ConstDecimals<6>> for ConstDecimals<35>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<36>
impl Add<ConstDecimals<6>> for ConstDecimals<36>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<37>
impl Add<ConstDecimals<6>> for ConstDecimals<37>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<38>
impl Add<ConstDecimals<6>> for ConstDecimals<38>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<39>
impl Add<ConstDecimals<6>> for ConstDecimals<39>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<40>
impl Add<ConstDecimals<6>> for ConstDecimals<40>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<41>
impl Add<ConstDecimals<6>> for ConstDecimals<41>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<42>
impl Add<ConstDecimals<6>> for ConstDecimals<42>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<43>
impl Add<ConstDecimals<6>> for ConstDecimals<43>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<44>
impl Add<ConstDecimals<6>> for ConstDecimals<44>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<45>
impl Add<ConstDecimals<6>> for ConstDecimals<45>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<46>
impl Add<ConstDecimals<6>> for ConstDecimals<46>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<47>
impl Add<ConstDecimals<6>> for ConstDecimals<47>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<48>
impl Add<ConstDecimals<6>> for ConstDecimals<48>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<49>
impl Add<ConstDecimals<6>> for ConstDecimals<49>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<50>
impl Add<ConstDecimals<6>> for ConstDecimals<50>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<51>
impl Add<ConstDecimals<6>> for ConstDecimals<51>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<52>
impl Add<ConstDecimals<6>> for ConstDecimals<52>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<53>
impl Add<ConstDecimals<6>> for ConstDecimals<53>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<54>
impl Add<ConstDecimals<6>> for ConstDecimals<54>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<55>
impl Add<ConstDecimals<6>> for ConstDecimals<55>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<56>
impl Add<ConstDecimals<6>> for ConstDecimals<56>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<57>
impl Add<ConstDecimals<6>> for ConstDecimals<57>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<58>
impl Add<ConstDecimals<6>> for ConstDecimals<58>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<59>
impl Add<ConstDecimals<6>> for ConstDecimals<59>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<60>
impl Add<ConstDecimals<6>> for ConstDecimals<60>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<61>
impl Add<ConstDecimals<6>> for ConstDecimals<61>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<62>
impl Add<ConstDecimals<6>> for ConstDecimals<62>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<63>
impl Add<ConstDecimals<6>> for ConstDecimals<63>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<6>> for ConstDecimals<64>
impl Add<ConstDecimals<6>> for ConstDecimals<64>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<0>
impl Add<ConstDecimals<7>> for ConstDecimals<0>
type Output = ConstDecimals<7>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<1>
impl Add<ConstDecimals<7>> for ConstDecimals<1>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<2>
impl Add<ConstDecimals<7>> for ConstDecimals<2>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<3>
impl Add<ConstDecimals<7>> for ConstDecimals<3>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<4>
impl Add<ConstDecimals<7>> for ConstDecimals<4>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<5>
impl Add<ConstDecimals<7>> for ConstDecimals<5>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<6>
impl Add<ConstDecimals<7>> for ConstDecimals<6>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<8>
impl Add<ConstDecimals<7>> for ConstDecimals<8>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<9>
impl Add<ConstDecimals<7>> for ConstDecimals<9>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<10>
impl Add<ConstDecimals<7>> for ConstDecimals<10>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<11>
impl Add<ConstDecimals<7>> for ConstDecimals<11>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<12>
impl Add<ConstDecimals<7>> for ConstDecimals<12>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<13>
impl Add<ConstDecimals<7>> for ConstDecimals<13>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<14>
impl Add<ConstDecimals<7>> for ConstDecimals<14>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<15>
impl Add<ConstDecimals<7>> for ConstDecimals<15>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<16>
impl Add<ConstDecimals<7>> for ConstDecimals<16>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<17>
impl Add<ConstDecimals<7>> for ConstDecimals<17>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<18>
impl Add<ConstDecimals<7>> for ConstDecimals<18>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<19>
impl Add<ConstDecimals<7>> for ConstDecimals<19>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<20>
impl Add<ConstDecimals<7>> for ConstDecimals<20>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<21>
impl Add<ConstDecimals<7>> for ConstDecimals<21>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<22>
impl Add<ConstDecimals<7>> for ConstDecimals<22>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<23>
impl Add<ConstDecimals<7>> for ConstDecimals<23>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<24>
impl Add<ConstDecimals<7>> for ConstDecimals<24>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<25>
impl Add<ConstDecimals<7>> for ConstDecimals<25>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<26>
impl Add<ConstDecimals<7>> for ConstDecimals<26>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<27>
impl Add<ConstDecimals<7>> for ConstDecimals<27>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<28>
impl Add<ConstDecimals<7>> for ConstDecimals<28>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<29>
impl Add<ConstDecimals<7>> for ConstDecimals<29>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<30>
impl Add<ConstDecimals<7>> for ConstDecimals<30>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<31>
impl Add<ConstDecimals<7>> for ConstDecimals<31>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<32>
impl Add<ConstDecimals<7>> for ConstDecimals<32>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<33>
impl Add<ConstDecimals<7>> for ConstDecimals<33>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<34>
impl Add<ConstDecimals<7>> for ConstDecimals<34>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<35>
impl Add<ConstDecimals<7>> for ConstDecimals<35>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<36>
impl Add<ConstDecimals<7>> for ConstDecimals<36>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<37>
impl Add<ConstDecimals<7>> for ConstDecimals<37>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<38>
impl Add<ConstDecimals<7>> for ConstDecimals<38>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<39>
impl Add<ConstDecimals<7>> for ConstDecimals<39>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<40>
impl Add<ConstDecimals<7>> for ConstDecimals<40>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<41>
impl Add<ConstDecimals<7>> for ConstDecimals<41>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<42>
impl Add<ConstDecimals<7>> for ConstDecimals<42>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<43>
impl Add<ConstDecimals<7>> for ConstDecimals<43>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<44>
impl Add<ConstDecimals<7>> for ConstDecimals<44>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<45>
impl Add<ConstDecimals<7>> for ConstDecimals<45>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<46>
impl Add<ConstDecimals<7>> for ConstDecimals<46>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<47>
impl Add<ConstDecimals<7>> for ConstDecimals<47>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<48>
impl Add<ConstDecimals<7>> for ConstDecimals<48>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<49>
impl Add<ConstDecimals<7>> for ConstDecimals<49>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<50>
impl Add<ConstDecimals<7>> for ConstDecimals<50>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<51>
impl Add<ConstDecimals<7>> for ConstDecimals<51>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<52>
impl Add<ConstDecimals<7>> for ConstDecimals<52>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<53>
impl Add<ConstDecimals<7>> for ConstDecimals<53>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<54>
impl Add<ConstDecimals<7>> for ConstDecimals<54>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<55>
impl Add<ConstDecimals<7>> for ConstDecimals<55>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<56>
impl Add<ConstDecimals<7>> for ConstDecimals<56>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<57>
impl Add<ConstDecimals<7>> for ConstDecimals<57>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<58>
impl Add<ConstDecimals<7>> for ConstDecimals<58>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<59>
impl Add<ConstDecimals<7>> for ConstDecimals<59>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<60>
impl Add<ConstDecimals<7>> for ConstDecimals<60>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<61>
impl Add<ConstDecimals<7>> for ConstDecimals<61>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<62>
impl Add<ConstDecimals<7>> for ConstDecimals<62>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<63>
impl Add<ConstDecimals<7>> for ConstDecimals<63>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<7>> for ConstDecimals<64>
impl Add<ConstDecimals<7>> for ConstDecimals<64>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<0>
impl Add<ConstDecimals<8>> for ConstDecimals<0>
type Output = ConstDecimals<8>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<1>
impl Add<ConstDecimals<8>> for ConstDecimals<1>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<2>
impl Add<ConstDecimals<8>> for ConstDecimals<2>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<3>
impl Add<ConstDecimals<8>> for ConstDecimals<3>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<4>
impl Add<ConstDecimals<8>> for ConstDecimals<4>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<5>
impl Add<ConstDecimals<8>> for ConstDecimals<5>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<6>
impl Add<ConstDecimals<8>> for ConstDecimals<6>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<7>
impl Add<ConstDecimals<8>> for ConstDecimals<7>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<9>
impl Add<ConstDecimals<8>> for ConstDecimals<9>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<10>
impl Add<ConstDecimals<8>> for ConstDecimals<10>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<11>
impl Add<ConstDecimals<8>> for ConstDecimals<11>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<12>
impl Add<ConstDecimals<8>> for ConstDecimals<12>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<13>
impl Add<ConstDecimals<8>> for ConstDecimals<13>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<14>
impl Add<ConstDecimals<8>> for ConstDecimals<14>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<15>
impl Add<ConstDecimals<8>> for ConstDecimals<15>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<16>
impl Add<ConstDecimals<8>> for ConstDecimals<16>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<17>
impl Add<ConstDecimals<8>> for ConstDecimals<17>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<18>
impl Add<ConstDecimals<8>> for ConstDecimals<18>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<19>
impl Add<ConstDecimals<8>> for ConstDecimals<19>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<20>
impl Add<ConstDecimals<8>> for ConstDecimals<20>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<21>
impl Add<ConstDecimals<8>> for ConstDecimals<21>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<22>
impl Add<ConstDecimals<8>> for ConstDecimals<22>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<23>
impl Add<ConstDecimals<8>> for ConstDecimals<23>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<24>
impl Add<ConstDecimals<8>> for ConstDecimals<24>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<25>
impl Add<ConstDecimals<8>> for ConstDecimals<25>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<26>
impl Add<ConstDecimals<8>> for ConstDecimals<26>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<27>
impl Add<ConstDecimals<8>> for ConstDecimals<27>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<28>
impl Add<ConstDecimals<8>> for ConstDecimals<28>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<29>
impl Add<ConstDecimals<8>> for ConstDecimals<29>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<30>
impl Add<ConstDecimals<8>> for ConstDecimals<30>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<31>
impl Add<ConstDecimals<8>> for ConstDecimals<31>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<32>
impl Add<ConstDecimals<8>> for ConstDecimals<32>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<33>
impl Add<ConstDecimals<8>> for ConstDecimals<33>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<34>
impl Add<ConstDecimals<8>> for ConstDecimals<34>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<35>
impl Add<ConstDecimals<8>> for ConstDecimals<35>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<36>
impl Add<ConstDecimals<8>> for ConstDecimals<36>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<37>
impl Add<ConstDecimals<8>> for ConstDecimals<37>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<38>
impl Add<ConstDecimals<8>> for ConstDecimals<38>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<39>
impl Add<ConstDecimals<8>> for ConstDecimals<39>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<40>
impl Add<ConstDecimals<8>> for ConstDecimals<40>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<41>
impl Add<ConstDecimals<8>> for ConstDecimals<41>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<42>
impl Add<ConstDecimals<8>> for ConstDecimals<42>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<43>
impl Add<ConstDecimals<8>> for ConstDecimals<43>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<44>
impl Add<ConstDecimals<8>> for ConstDecimals<44>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<45>
impl Add<ConstDecimals<8>> for ConstDecimals<45>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<46>
impl Add<ConstDecimals<8>> for ConstDecimals<46>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<47>
impl Add<ConstDecimals<8>> for ConstDecimals<47>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<48>
impl Add<ConstDecimals<8>> for ConstDecimals<48>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<49>
impl Add<ConstDecimals<8>> for ConstDecimals<49>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<50>
impl Add<ConstDecimals<8>> for ConstDecimals<50>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<51>
impl Add<ConstDecimals<8>> for ConstDecimals<51>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<52>
impl Add<ConstDecimals<8>> for ConstDecimals<52>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<53>
impl Add<ConstDecimals<8>> for ConstDecimals<53>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<54>
impl Add<ConstDecimals<8>> for ConstDecimals<54>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<55>
impl Add<ConstDecimals<8>> for ConstDecimals<55>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<56>
impl Add<ConstDecimals<8>> for ConstDecimals<56>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<57>
impl Add<ConstDecimals<8>> for ConstDecimals<57>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<58>
impl Add<ConstDecimals<8>> for ConstDecimals<58>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<59>
impl Add<ConstDecimals<8>> for ConstDecimals<59>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<60>
impl Add<ConstDecimals<8>> for ConstDecimals<60>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<61>
impl Add<ConstDecimals<8>> for ConstDecimals<61>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<62>
impl Add<ConstDecimals<8>> for ConstDecimals<62>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<63>
impl Add<ConstDecimals<8>> for ConstDecimals<63>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<8>> for ConstDecimals<64>
impl Add<ConstDecimals<8>> for ConstDecimals<64>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<0>
impl Add<ConstDecimals<9>> for ConstDecimals<0>
type Output = ConstDecimals<9>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<1>
impl Add<ConstDecimals<9>> for ConstDecimals<1>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<2>
impl Add<ConstDecimals<9>> for ConstDecimals<2>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<3>
impl Add<ConstDecimals<9>> for ConstDecimals<3>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<4>
impl Add<ConstDecimals<9>> for ConstDecimals<4>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<5>
impl Add<ConstDecimals<9>> for ConstDecimals<5>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<6>
impl Add<ConstDecimals<9>> for ConstDecimals<6>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<7>
impl Add<ConstDecimals<9>> for ConstDecimals<7>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<8>
impl Add<ConstDecimals<9>> for ConstDecimals<8>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<10>
impl Add<ConstDecimals<9>> for ConstDecimals<10>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<11>
impl Add<ConstDecimals<9>> for ConstDecimals<11>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<12>
impl Add<ConstDecimals<9>> for ConstDecimals<12>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<13>
impl Add<ConstDecimals<9>> for ConstDecimals<13>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<14>
impl Add<ConstDecimals<9>> for ConstDecimals<14>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<15>
impl Add<ConstDecimals<9>> for ConstDecimals<15>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<16>
impl Add<ConstDecimals<9>> for ConstDecimals<16>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<17>
impl Add<ConstDecimals<9>> for ConstDecimals<17>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<18>
impl Add<ConstDecimals<9>> for ConstDecimals<18>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<19>
impl Add<ConstDecimals<9>> for ConstDecimals<19>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<20>
impl Add<ConstDecimals<9>> for ConstDecimals<20>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<21>
impl Add<ConstDecimals<9>> for ConstDecimals<21>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<22>
impl Add<ConstDecimals<9>> for ConstDecimals<22>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<23>
impl Add<ConstDecimals<9>> for ConstDecimals<23>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<24>
impl Add<ConstDecimals<9>> for ConstDecimals<24>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<25>
impl Add<ConstDecimals<9>> for ConstDecimals<25>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<26>
impl Add<ConstDecimals<9>> for ConstDecimals<26>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<27>
impl Add<ConstDecimals<9>> for ConstDecimals<27>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<28>
impl Add<ConstDecimals<9>> for ConstDecimals<28>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<29>
impl Add<ConstDecimals<9>> for ConstDecimals<29>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<30>
impl Add<ConstDecimals<9>> for ConstDecimals<30>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<31>
impl Add<ConstDecimals<9>> for ConstDecimals<31>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<32>
impl Add<ConstDecimals<9>> for ConstDecimals<32>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<33>
impl Add<ConstDecimals<9>> for ConstDecimals<33>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<34>
impl Add<ConstDecimals<9>> for ConstDecimals<34>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<35>
impl Add<ConstDecimals<9>> for ConstDecimals<35>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<36>
impl Add<ConstDecimals<9>> for ConstDecimals<36>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<37>
impl Add<ConstDecimals<9>> for ConstDecimals<37>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<38>
impl Add<ConstDecimals<9>> for ConstDecimals<38>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<39>
impl Add<ConstDecimals<9>> for ConstDecimals<39>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<40>
impl Add<ConstDecimals<9>> for ConstDecimals<40>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<41>
impl Add<ConstDecimals<9>> for ConstDecimals<41>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<42>
impl Add<ConstDecimals<9>> for ConstDecimals<42>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<43>
impl Add<ConstDecimals<9>> for ConstDecimals<43>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<44>
impl Add<ConstDecimals<9>> for ConstDecimals<44>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<45>
impl Add<ConstDecimals<9>> for ConstDecimals<45>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<46>
impl Add<ConstDecimals<9>> for ConstDecimals<46>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<47>
impl Add<ConstDecimals<9>> for ConstDecimals<47>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<48>
impl Add<ConstDecimals<9>> for ConstDecimals<48>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<49>
impl Add<ConstDecimals<9>> for ConstDecimals<49>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<50>
impl Add<ConstDecimals<9>> for ConstDecimals<50>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<51>
impl Add<ConstDecimals<9>> for ConstDecimals<51>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<52>
impl Add<ConstDecimals<9>> for ConstDecimals<52>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<53>
impl Add<ConstDecimals<9>> for ConstDecimals<53>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<54>
impl Add<ConstDecimals<9>> for ConstDecimals<54>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<55>
impl Add<ConstDecimals<9>> for ConstDecimals<55>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<56>
impl Add<ConstDecimals<9>> for ConstDecimals<56>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<57>
impl Add<ConstDecimals<9>> for ConstDecimals<57>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<58>
impl Add<ConstDecimals<9>> for ConstDecimals<58>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<59>
impl Add<ConstDecimals<9>> for ConstDecimals<59>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<60>
impl Add<ConstDecimals<9>> for ConstDecimals<60>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<61>
impl Add<ConstDecimals<9>> for ConstDecimals<61>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<62>
impl Add<ConstDecimals<9>> for ConstDecimals<62>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<63>
impl Add<ConstDecimals<9>> for ConstDecimals<63>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<9>> for ConstDecimals<64>
impl Add<ConstDecimals<9>> for ConstDecimals<64>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<0>
impl Add<ConstDecimals<10>> for ConstDecimals<0>
type Output = ConstDecimals<10>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<1>
impl Add<ConstDecimals<10>> for ConstDecimals<1>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<2>
impl Add<ConstDecimals<10>> for ConstDecimals<2>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<3>
impl Add<ConstDecimals<10>> for ConstDecimals<3>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<4>
impl Add<ConstDecimals<10>> for ConstDecimals<4>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<5>
impl Add<ConstDecimals<10>> for ConstDecimals<5>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<6>
impl Add<ConstDecimals<10>> for ConstDecimals<6>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<7>
impl Add<ConstDecimals<10>> for ConstDecimals<7>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<8>
impl Add<ConstDecimals<10>> for ConstDecimals<8>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<9>
impl Add<ConstDecimals<10>> for ConstDecimals<9>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<11>
impl Add<ConstDecimals<10>> for ConstDecimals<11>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<12>
impl Add<ConstDecimals<10>> for ConstDecimals<12>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<13>
impl Add<ConstDecimals<10>> for ConstDecimals<13>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<14>
impl Add<ConstDecimals<10>> for ConstDecimals<14>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<15>
impl Add<ConstDecimals<10>> for ConstDecimals<15>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<16>
impl Add<ConstDecimals<10>> for ConstDecimals<16>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<17>
impl Add<ConstDecimals<10>> for ConstDecimals<17>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<18>
impl Add<ConstDecimals<10>> for ConstDecimals<18>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<19>
impl Add<ConstDecimals<10>> for ConstDecimals<19>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<20>
impl Add<ConstDecimals<10>> for ConstDecimals<20>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<21>
impl Add<ConstDecimals<10>> for ConstDecimals<21>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<22>
impl Add<ConstDecimals<10>> for ConstDecimals<22>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<23>
impl Add<ConstDecimals<10>> for ConstDecimals<23>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<24>
impl Add<ConstDecimals<10>> for ConstDecimals<24>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<25>
impl Add<ConstDecimals<10>> for ConstDecimals<25>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<26>
impl Add<ConstDecimals<10>> for ConstDecimals<26>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<27>
impl Add<ConstDecimals<10>> for ConstDecimals<27>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<28>
impl Add<ConstDecimals<10>> for ConstDecimals<28>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<29>
impl Add<ConstDecimals<10>> for ConstDecimals<29>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<30>
impl Add<ConstDecimals<10>> for ConstDecimals<30>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<31>
impl Add<ConstDecimals<10>> for ConstDecimals<31>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<32>
impl Add<ConstDecimals<10>> for ConstDecimals<32>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<33>
impl Add<ConstDecimals<10>> for ConstDecimals<33>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<34>
impl Add<ConstDecimals<10>> for ConstDecimals<34>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<35>
impl Add<ConstDecimals<10>> for ConstDecimals<35>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<36>
impl Add<ConstDecimals<10>> for ConstDecimals<36>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<37>
impl Add<ConstDecimals<10>> for ConstDecimals<37>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<38>
impl Add<ConstDecimals<10>> for ConstDecimals<38>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<39>
impl Add<ConstDecimals<10>> for ConstDecimals<39>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<40>
impl Add<ConstDecimals<10>> for ConstDecimals<40>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<41>
impl Add<ConstDecimals<10>> for ConstDecimals<41>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<42>
impl Add<ConstDecimals<10>> for ConstDecimals<42>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<43>
impl Add<ConstDecimals<10>> for ConstDecimals<43>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<44>
impl Add<ConstDecimals<10>> for ConstDecimals<44>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<45>
impl Add<ConstDecimals<10>> for ConstDecimals<45>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<46>
impl Add<ConstDecimals<10>> for ConstDecimals<46>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<47>
impl Add<ConstDecimals<10>> for ConstDecimals<47>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<48>
impl Add<ConstDecimals<10>> for ConstDecimals<48>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<49>
impl Add<ConstDecimals<10>> for ConstDecimals<49>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<50>
impl Add<ConstDecimals<10>> for ConstDecimals<50>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<51>
impl Add<ConstDecimals<10>> for ConstDecimals<51>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<52>
impl Add<ConstDecimals<10>> for ConstDecimals<52>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<53>
impl Add<ConstDecimals<10>> for ConstDecimals<53>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<54>
impl Add<ConstDecimals<10>> for ConstDecimals<54>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<55>
impl Add<ConstDecimals<10>> for ConstDecimals<55>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<56>
impl Add<ConstDecimals<10>> for ConstDecimals<56>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<57>
impl Add<ConstDecimals<10>> for ConstDecimals<57>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<58>
impl Add<ConstDecimals<10>> for ConstDecimals<58>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<59>
impl Add<ConstDecimals<10>> for ConstDecimals<59>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<60>
impl Add<ConstDecimals<10>> for ConstDecimals<60>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<61>
impl Add<ConstDecimals<10>> for ConstDecimals<61>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<62>
impl Add<ConstDecimals<10>> for ConstDecimals<62>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<63>
impl Add<ConstDecimals<10>> for ConstDecimals<63>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<10>> for ConstDecimals<64>
impl Add<ConstDecimals<10>> for ConstDecimals<64>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<0>
impl Add<ConstDecimals<11>> for ConstDecimals<0>
type Output = ConstDecimals<11>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<1>
impl Add<ConstDecimals<11>> for ConstDecimals<1>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<2>
impl Add<ConstDecimals<11>> for ConstDecimals<2>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<3>
impl Add<ConstDecimals<11>> for ConstDecimals<3>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<4>
impl Add<ConstDecimals<11>> for ConstDecimals<4>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<5>
impl Add<ConstDecimals<11>> for ConstDecimals<5>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<6>
impl Add<ConstDecimals<11>> for ConstDecimals<6>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<7>
impl Add<ConstDecimals<11>> for ConstDecimals<7>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<8>
impl Add<ConstDecimals<11>> for ConstDecimals<8>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<9>
impl Add<ConstDecimals<11>> for ConstDecimals<9>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<10>
impl Add<ConstDecimals<11>> for ConstDecimals<10>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<12>
impl Add<ConstDecimals<11>> for ConstDecimals<12>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<13>
impl Add<ConstDecimals<11>> for ConstDecimals<13>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<14>
impl Add<ConstDecimals<11>> for ConstDecimals<14>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<15>
impl Add<ConstDecimals<11>> for ConstDecimals<15>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<16>
impl Add<ConstDecimals<11>> for ConstDecimals<16>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<17>
impl Add<ConstDecimals<11>> for ConstDecimals<17>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<18>
impl Add<ConstDecimals<11>> for ConstDecimals<18>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<19>
impl Add<ConstDecimals<11>> for ConstDecimals<19>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<20>
impl Add<ConstDecimals<11>> for ConstDecimals<20>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<21>
impl Add<ConstDecimals<11>> for ConstDecimals<21>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<22>
impl Add<ConstDecimals<11>> for ConstDecimals<22>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<23>
impl Add<ConstDecimals<11>> for ConstDecimals<23>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<24>
impl Add<ConstDecimals<11>> for ConstDecimals<24>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<25>
impl Add<ConstDecimals<11>> for ConstDecimals<25>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<26>
impl Add<ConstDecimals<11>> for ConstDecimals<26>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<27>
impl Add<ConstDecimals<11>> for ConstDecimals<27>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<28>
impl Add<ConstDecimals<11>> for ConstDecimals<28>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<29>
impl Add<ConstDecimals<11>> for ConstDecimals<29>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<30>
impl Add<ConstDecimals<11>> for ConstDecimals<30>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<31>
impl Add<ConstDecimals<11>> for ConstDecimals<31>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<32>
impl Add<ConstDecimals<11>> for ConstDecimals<32>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<33>
impl Add<ConstDecimals<11>> for ConstDecimals<33>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<34>
impl Add<ConstDecimals<11>> for ConstDecimals<34>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<35>
impl Add<ConstDecimals<11>> for ConstDecimals<35>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<36>
impl Add<ConstDecimals<11>> for ConstDecimals<36>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<37>
impl Add<ConstDecimals<11>> for ConstDecimals<37>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<38>
impl Add<ConstDecimals<11>> for ConstDecimals<38>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<39>
impl Add<ConstDecimals<11>> for ConstDecimals<39>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<40>
impl Add<ConstDecimals<11>> for ConstDecimals<40>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<41>
impl Add<ConstDecimals<11>> for ConstDecimals<41>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<42>
impl Add<ConstDecimals<11>> for ConstDecimals<42>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<43>
impl Add<ConstDecimals<11>> for ConstDecimals<43>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<44>
impl Add<ConstDecimals<11>> for ConstDecimals<44>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<45>
impl Add<ConstDecimals<11>> for ConstDecimals<45>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<46>
impl Add<ConstDecimals<11>> for ConstDecimals<46>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<47>
impl Add<ConstDecimals<11>> for ConstDecimals<47>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<48>
impl Add<ConstDecimals<11>> for ConstDecimals<48>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<49>
impl Add<ConstDecimals<11>> for ConstDecimals<49>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<50>
impl Add<ConstDecimals<11>> for ConstDecimals<50>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<51>
impl Add<ConstDecimals<11>> for ConstDecimals<51>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<52>
impl Add<ConstDecimals<11>> for ConstDecimals<52>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<53>
impl Add<ConstDecimals<11>> for ConstDecimals<53>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<54>
impl Add<ConstDecimals<11>> for ConstDecimals<54>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<55>
impl Add<ConstDecimals<11>> for ConstDecimals<55>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<56>
impl Add<ConstDecimals<11>> for ConstDecimals<56>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<57>
impl Add<ConstDecimals<11>> for ConstDecimals<57>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<58>
impl Add<ConstDecimals<11>> for ConstDecimals<58>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<59>
impl Add<ConstDecimals<11>> for ConstDecimals<59>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<60>
impl Add<ConstDecimals<11>> for ConstDecimals<60>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<61>
impl Add<ConstDecimals<11>> for ConstDecimals<61>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<62>
impl Add<ConstDecimals<11>> for ConstDecimals<62>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<63>
impl Add<ConstDecimals<11>> for ConstDecimals<63>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<11>> for ConstDecimals<64>
impl Add<ConstDecimals<11>> for ConstDecimals<64>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<0>
impl Add<ConstDecimals<12>> for ConstDecimals<0>
type Output = ConstDecimals<12>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<1>
impl Add<ConstDecimals<12>> for ConstDecimals<1>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<2>
impl Add<ConstDecimals<12>> for ConstDecimals<2>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<3>
impl Add<ConstDecimals<12>> for ConstDecimals<3>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<4>
impl Add<ConstDecimals<12>> for ConstDecimals<4>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<5>
impl Add<ConstDecimals<12>> for ConstDecimals<5>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<6>
impl Add<ConstDecimals<12>> for ConstDecimals<6>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<7>
impl Add<ConstDecimals<12>> for ConstDecimals<7>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<8>
impl Add<ConstDecimals<12>> for ConstDecimals<8>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<9>
impl Add<ConstDecimals<12>> for ConstDecimals<9>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<10>
impl Add<ConstDecimals<12>> for ConstDecimals<10>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<11>
impl Add<ConstDecimals<12>> for ConstDecimals<11>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<13>
impl Add<ConstDecimals<12>> for ConstDecimals<13>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<14>
impl Add<ConstDecimals<12>> for ConstDecimals<14>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<15>
impl Add<ConstDecimals<12>> for ConstDecimals<15>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<16>
impl Add<ConstDecimals<12>> for ConstDecimals<16>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<17>
impl Add<ConstDecimals<12>> for ConstDecimals<17>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<18>
impl Add<ConstDecimals<12>> for ConstDecimals<18>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<19>
impl Add<ConstDecimals<12>> for ConstDecimals<19>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<20>
impl Add<ConstDecimals<12>> for ConstDecimals<20>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<21>
impl Add<ConstDecimals<12>> for ConstDecimals<21>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<22>
impl Add<ConstDecimals<12>> for ConstDecimals<22>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<23>
impl Add<ConstDecimals<12>> for ConstDecimals<23>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<24>
impl Add<ConstDecimals<12>> for ConstDecimals<24>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<25>
impl Add<ConstDecimals<12>> for ConstDecimals<25>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<26>
impl Add<ConstDecimals<12>> for ConstDecimals<26>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<27>
impl Add<ConstDecimals<12>> for ConstDecimals<27>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<28>
impl Add<ConstDecimals<12>> for ConstDecimals<28>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<29>
impl Add<ConstDecimals<12>> for ConstDecimals<29>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<30>
impl Add<ConstDecimals<12>> for ConstDecimals<30>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<31>
impl Add<ConstDecimals<12>> for ConstDecimals<31>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<32>
impl Add<ConstDecimals<12>> for ConstDecimals<32>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<33>
impl Add<ConstDecimals<12>> for ConstDecimals<33>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<34>
impl Add<ConstDecimals<12>> for ConstDecimals<34>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<35>
impl Add<ConstDecimals<12>> for ConstDecimals<35>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<36>
impl Add<ConstDecimals<12>> for ConstDecimals<36>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<37>
impl Add<ConstDecimals<12>> for ConstDecimals<37>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<38>
impl Add<ConstDecimals<12>> for ConstDecimals<38>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<39>
impl Add<ConstDecimals<12>> for ConstDecimals<39>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<40>
impl Add<ConstDecimals<12>> for ConstDecimals<40>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<41>
impl Add<ConstDecimals<12>> for ConstDecimals<41>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<42>
impl Add<ConstDecimals<12>> for ConstDecimals<42>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<43>
impl Add<ConstDecimals<12>> for ConstDecimals<43>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<44>
impl Add<ConstDecimals<12>> for ConstDecimals<44>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<45>
impl Add<ConstDecimals<12>> for ConstDecimals<45>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<46>
impl Add<ConstDecimals<12>> for ConstDecimals<46>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<47>
impl Add<ConstDecimals<12>> for ConstDecimals<47>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<48>
impl Add<ConstDecimals<12>> for ConstDecimals<48>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<49>
impl Add<ConstDecimals<12>> for ConstDecimals<49>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<50>
impl Add<ConstDecimals<12>> for ConstDecimals<50>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<51>
impl Add<ConstDecimals<12>> for ConstDecimals<51>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<52>
impl Add<ConstDecimals<12>> for ConstDecimals<52>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<53>
impl Add<ConstDecimals<12>> for ConstDecimals<53>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<54>
impl Add<ConstDecimals<12>> for ConstDecimals<54>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<55>
impl Add<ConstDecimals<12>> for ConstDecimals<55>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<56>
impl Add<ConstDecimals<12>> for ConstDecimals<56>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<57>
impl Add<ConstDecimals<12>> for ConstDecimals<57>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<58>
impl Add<ConstDecimals<12>> for ConstDecimals<58>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<59>
impl Add<ConstDecimals<12>> for ConstDecimals<59>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<60>
impl Add<ConstDecimals<12>> for ConstDecimals<60>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<61>
impl Add<ConstDecimals<12>> for ConstDecimals<61>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<62>
impl Add<ConstDecimals<12>> for ConstDecimals<62>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<63>
impl Add<ConstDecimals<12>> for ConstDecimals<63>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<12>> for ConstDecimals<64>
impl Add<ConstDecimals<12>> for ConstDecimals<64>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<0>
impl Add<ConstDecimals<13>> for ConstDecimals<0>
type Output = ConstDecimals<13>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<1>
impl Add<ConstDecimals<13>> for ConstDecimals<1>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<2>
impl Add<ConstDecimals<13>> for ConstDecimals<2>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<3>
impl Add<ConstDecimals<13>> for ConstDecimals<3>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<4>
impl Add<ConstDecimals<13>> for ConstDecimals<4>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<5>
impl Add<ConstDecimals<13>> for ConstDecimals<5>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<6>
impl Add<ConstDecimals<13>> for ConstDecimals<6>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<7>
impl Add<ConstDecimals<13>> for ConstDecimals<7>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<8>
impl Add<ConstDecimals<13>> for ConstDecimals<8>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<9>
impl Add<ConstDecimals<13>> for ConstDecimals<9>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<10>
impl Add<ConstDecimals<13>> for ConstDecimals<10>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<11>
impl Add<ConstDecimals<13>> for ConstDecimals<11>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<12>
impl Add<ConstDecimals<13>> for ConstDecimals<12>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<14>
impl Add<ConstDecimals<13>> for ConstDecimals<14>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<15>
impl Add<ConstDecimals<13>> for ConstDecimals<15>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<16>
impl Add<ConstDecimals<13>> for ConstDecimals<16>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<17>
impl Add<ConstDecimals<13>> for ConstDecimals<17>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<18>
impl Add<ConstDecimals<13>> for ConstDecimals<18>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<19>
impl Add<ConstDecimals<13>> for ConstDecimals<19>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<20>
impl Add<ConstDecimals<13>> for ConstDecimals<20>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<21>
impl Add<ConstDecimals<13>> for ConstDecimals<21>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<22>
impl Add<ConstDecimals<13>> for ConstDecimals<22>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<23>
impl Add<ConstDecimals<13>> for ConstDecimals<23>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<24>
impl Add<ConstDecimals<13>> for ConstDecimals<24>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<25>
impl Add<ConstDecimals<13>> for ConstDecimals<25>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<26>
impl Add<ConstDecimals<13>> for ConstDecimals<26>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<27>
impl Add<ConstDecimals<13>> for ConstDecimals<27>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<28>
impl Add<ConstDecimals<13>> for ConstDecimals<28>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<29>
impl Add<ConstDecimals<13>> for ConstDecimals<29>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<30>
impl Add<ConstDecimals<13>> for ConstDecimals<30>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<31>
impl Add<ConstDecimals<13>> for ConstDecimals<31>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<32>
impl Add<ConstDecimals<13>> for ConstDecimals<32>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<33>
impl Add<ConstDecimals<13>> for ConstDecimals<33>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<34>
impl Add<ConstDecimals<13>> for ConstDecimals<34>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<35>
impl Add<ConstDecimals<13>> for ConstDecimals<35>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<36>
impl Add<ConstDecimals<13>> for ConstDecimals<36>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<37>
impl Add<ConstDecimals<13>> for ConstDecimals<37>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<38>
impl Add<ConstDecimals<13>> for ConstDecimals<38>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<39>
impl Add<ConstDecimals<13>> for ConstDecimals<39>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<40>
impl Add<ConstDecimals<13>> for ConstDecimals<40>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<41>
impl Add<ConstDecimals<13>> for ConstDecimals<41>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<42>
impl Add<ConstDecimals<13>> for ConstDecimals<42>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<43>
impl Add<ConstDecimals<13>> for ConstDecimals<43>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<44>
impl Add<ConstDecimals<13>> for ConstDecimals<44>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<45>
impl Add<ConstDecimals<13>> for ConstDecimals<45>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<46>
impl Add<ConstDecimals<13>> for ConstDecimals<46>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<47>
impl Add<ConstDecimals<13>> for ConstDecimals<47>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<48>
impl Add<ConstDecimals<13>> for ConstDecimals<48>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<49>
impl Add<ConstDecimals<13>> for ConstDecimals<49>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<50>
impl Add<ConstDecimals<13>> for ConstDecimals<50>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<51>
impl Add<ConstDecimals<13>> for ConstDecimals<51>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<52>
impl Add<ConstDecimals<13>> for ConstDecimals<52>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<53>
impl Add<ConstDecimals<13>> for ConstDecimals<53>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<54>
impl Add<ConstDecimals<13>> for ConstDecimals<54>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<55>
impl Add<ConstDecimals<13>> for ConstDecimals<55>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<56>
impl Add<ConstDecimals<13>> for ConstDecimals<56>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<57>
impl Add<ConstDecimals<13>> for ConstDecimals<57>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<58>
impl Add<ConstDecimals<13>> for ConstDecimals<58>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<59>
impl Add<ConstDecimals<13>> for ConstDecimals<59>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<60>
impl Add<ConstDecimals<13>> for ConstDecimals<60>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<61>
impl Add<ConstDecimals<13>> for ConstDecimals<61>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<62>
impl Add<ConstDecimals<13>> for ConstDecimals<62>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<63>
impl Add<ConstDecimals<13>> for ConstDecimals<63>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<13>> for ConstDecimals<64>
impl Add<ConstDecimals<13>> for ConstDecimals<64>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<0>
impl Add<ConstDecimals<14>> for ConstDecimals<0>
type Output = ConstDecimals<14>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<1>
impl Add<ConstDecimals<14>> for ConstDecimals<1>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<2>
impl Add<ConstDecimals<14>> for ConstDecimals<2>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<3>
impl Add<ConstDecimals<14>> for ConstDecimals<3>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<4>
impl Add<ConstDecimals<14>> for ConstDecimals<4>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<5>
impl Add<ConstDecimals<14>> for ConstDecimals<5>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<6>
impl Add<ConstDecimals<14>> for ConstDecimals<6>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<7>
impl Add<ConstDecimals<14>> for ConstDecimals<7>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<8>
impl Add<ConstDecimals<14>> for ConstDecimals<8>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<9>
impl Add<ConstDecimals<14>> for ConstDecimals<9>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<10>
impl Add<ConstDecimals<14>> for ConstDecimals<10>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<11>
impl Add<ConstDecimals<14>> for ConstDecimals<11>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<12>
impl Add<ConstDecimals<14>> for ConstDecimals<12>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<13>
impl Add<ConstDecimals<14>> for ConstDecimals<13>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<15>
impl Add<ConstDecimals<14>> for ConstDecimals<15>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<16>
impl Add<ConstDecimals<14>> for ConstDecimals<16>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<17>
impl Add<ConstDecimals<14>> for ConstDecimals<17>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<18>
impl Add<ConstDecimals<14>> for ConstDecimals<18>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<19>
impl Add<ConstDecimals<14>> for ConstDecimals<19>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<20>
impl Add<ConstDecimals<14>> for ConstDecimals<20>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<21>
impl Add<ConstDecimals<14>> for ConstDecimals<21>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<22>
impl Add<ConstDecimals<14>> for ConstDecimals<22>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<23>
impl Add<ConstDecimals<14>> for ConstDecimals<23>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<24>
impl Add<ConstDecimals<14>> for ConstDecimals<24>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<25>
impl Add<ConstDecimals<14>> for ConstDecimals<25>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<26>
impl Add<ConstDecimals<14>> for ConstDecimals<26>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<27>
impl Add<ConstDecimals<14>> for ConstDecimals<27>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<28>
impl Add<ConstDecimals<14>> for ConstDecimals<28>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<29>
impl Add<ConstDecimals<14>> for ConstDecimals<29>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<30>
impl Add<ConstDecimals<14>> for ConstDecimals<30>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<31>
impl Add<ConstDecimals<14>> for ConstDecimals<31>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<32>
impl Add<ConstDecimals<14>> for ConstDecimals<32>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<33>
impl Add<ConstDecimals<14>> for ConstDecimals<33>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<34>
impl Add<ConstDecimals<14>> for ConstDecimals<34>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<35>
impl Add<ConstDecimals<14>> for ConstDecimals<35>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<36>
impl Add<ConstDecimals<14>> for ConstDecimals<36>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<37>
impl Add<ConstDecimals<14>> for ConstDecimals<37>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<38>
impl Add<ConstDecimals<14>> for ConstDecimals<38>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<39>
impl Add<ConstDecimals<14>> for ConstDecimals<39>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<40>
impl Add<ConstDecimals<14>> for ConstDecimals<40>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<41>
impl Add<ConstDecimals<14>> for ConstDecimals<41>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<42>
impl Add<ConstDecimals<14>> for ConstDecimals<42>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<43>
impl Add<ConstDecimals<14>> for ConstDecimals<43>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<44>
impl Add<ConstDecimals<14>> for ConstDecimals<44>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<45>
impl Add<ConstDecimals<14>> for ConstDecimals<45>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<46>
impl Add<ConstDecimals<14>> for ConstDecimals<46>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<47>
impl Add<ConstDecimals<14>> for ConstDecimals<47>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<48>
impl Add<ConstDecimals<14>> for ConstDecimals<48>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<49>
impl Add<ConstDecimals<14>> for ConstDecimals<49>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<50>
impl Add<ConstDecimals<14>> for ConstDecimals<50>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<51>
impl Add<ConstDecimals<14>> for ConstDecimals<51>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<52>
impl Add<ConstDecimals<14>> for ConstDecimals<52>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<53>
impl Add<ConstDecimals<14>> for ConstDecimals<53>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<54>
impl Add<ConstDecimals<14>> for ConstDecimals<54>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<55>
impl Add<ConstDecimals<14>> for ConstDecimals<55>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<56>
impl Add<ConstDecimals<14>> for ConstDecimals<56>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<57>
impl Add<ConstDecimals<14>> for ConstDecimals<57>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<58>
impl Add<ConstDecimals<14>> for ConstDecimals<58>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<59>
impl Add<ConstDecimals<14>> for ConstDecimals<59>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<60>
impl Add<ConstDecimals<14>> for ConstDecimals<60>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<61>
impl Add<ConstDecimals<14>> for ConstDecimals<61>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<62>
impl Add<ConstDecimals<14>> for ConstDecimals<62>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<63>
impl Add<ConstDecimals<14>> for ConstDecimals<63>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<14>> for ConstDecimals<64>
impl Add<ConstDecimals<14>> for ConstDecimals<64>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<0>
impl Add<ConstDecimals<15>> for ConstDecimals<0>
type Output = ConstDecimals<15>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<1>
impl Add<ConstDecimals<15>> for ConstDecimals<1>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<2>
impl Add<ConstDecimals<15>> for ConstDecimals<2>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<3>
impl Add<ConstDecimals<15>> for ConstDecimals<3>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<4>
impl Add<ConstDecimals<15>> for ConstDecimals<4>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<5>
impl Add<ConstDecimals<15>> for ConstDecimals<5>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<6>
impl Add<ConstDecimals<15>> for ConstDecimals<6>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<7>
impl Add<ConstDecimals<15>> for ConstDecimals<7>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<8>
impl Add<ConstDecimals<15>> for ConstDecimals<8>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<9>
impl Add<ConstDecimals<15>> for ConstDecimals<9>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<10>
impl Add<ConstDecimals<15>> for ConstDecimals<10>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<11>
impl Add<ConstDecimals<15>> for ConstDecimals<11>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<12>
impl Add<ConstDecimals<15>> for ConstDecimals<12>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<13>
impl Add<ConstDecimals<15>> for ConstDecimals<13>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<14>
impl Add<ConstDecimals<15>> for ConstDecimals<14>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<16>
impl Add<ConstDecimals<15>> for ConstDecimals<16>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<17>
impl Add<ConstDecimals<15>> for ConstDecimals<17>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<18>
impl Add<ConstDecimals<15>> for ConstDecimals<18>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<19>
impl Add<ConstDecimals<15>> for ConstDecimals<19>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<20>
impl Add<ConstDecimals<15>> for ConstDecimals<20>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<21>
impl Add<ConstDecimals<15>> for ConstDecimals<21>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<22>
impl Add<ConstDecimals<15>> for ConstDecimals<22>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<23>
impl Add<ConstDecimals<15>> for ConstDecimals<23>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<24>
impl Add<ConstDecimals<15>> for ConstDecimals<24>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<25>
impl Add<ConstDecimals<15>> for ConstDecimals<25>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<26>
impl Add<ConstDecimals<15>> for ConstDecimals<26>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<27>
impl Add<ConstDecimals<15>> for ConstDecimals<27>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<28>
impl Add<ConstDecimals<15>> for ConstDecimals<28>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<29>
impl Add<ConstDecimals<15>> for ConstDecimals<29>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<30>
impl Add<ConstDecimals<15>> for ConstDecimals<30>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<31>
impl Add<ConstDecimals<15>> for ConstDecimals<31>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<32>
impl Add<ConstDecimals<15>> for ConstDecimals<32>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<33>
impl Add<ConstDecimals<15>> for ConstDecimals<33>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<34>
impl Add<ConstDecimals<15>> for ConstDecimals<34>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<35>
impl Add<ConstDecimals<15>> for ConstDecimals<35>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<36>
impl Add<ConstDecimals<15>> for ConstDecimals<36>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<37>
impl Add<ConstDecimals<15>> for ConstDecimals<37>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<38>
impl Add<ConstDecimals<15>> for ConstDecimals<38>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<39>
impl Add<ConstDecimals<15>> for ConstDecimals<39>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<40>
impl Add<ConstDecimals<15>> for ConstDecimals<40>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<41>
impl Add<ConstDecimals<15>> for ConstDecimals<41>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<42>
impl Add<ConstDecimals<15>> for ConstDecimals<42>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<43>
impl Add<ConstDecimals<15>> for ConstDecimals<43>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<44>
impl Add<ConstDecimals<15>> for ConstDecimals<44>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<45>
impl Add<ConstDecimals<15>> for ConstDecimals<45>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<46>
impl Add<ConstDecimals<15>> for ConstDecimals<46>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<47>
impl Add<ConstDecimals<15>> for ConstDecimals<47>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<48>
impl Add<ConstDecimals<15>> for ConstDecimals<48>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<49>
impl Add<ConstDecimals<15>> for ConstDecimals<49>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<50>
impl Add<ConstDecimals<15>> for ConstDecimals<50>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<51>
impl Add<ConstDecimals<15>> for ConstDecimals<51>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<52>
impl Add<ConstDecimals<15>> for ConstDecimals<52>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<53>
impl Add<ConstDecimals<15>> for ConstDecimals<53>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<54>
impl Add<ConstDecimals<15>> for ConstDecimals<54>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<55>
impl Add<ConstDecimals<15>> for ConstDecimals<55>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<56>
impl Add<ConstDecimals<15>> for ConstDecimals<56>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<57>
impl Add<ConstDecimals<15>> for ConstDecimals<57>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<58>
impl Add<ConstDecimals<15>> for ConstDecimals<58>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<59>
impl Add<ConstDecimals<15>> for ConstDecimals<59>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<60>
impl Add<ConstDecimals<15>> for ConstDecimals<60>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<61>
impl Add<ConstDecimals<15>> for ConstDecimals<61>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<62>
impl Add<ConstDecimals<15>> for ConstDecimals<62>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<63>
impl Add<ConstDecimals<15>> for ConstDecimals<63>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<15>> for ConstDecimals<64>
impl Add<ConstDecimals<15>> for ConstDecimals<64>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<0>
impl Add<ConstDecimals<16>> for ConstDecimals<0>
type Output = ConstDecimals<16>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<1>
impl Add<ConstDecimals<16>> for ConstDecimals<1>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<2>
impl Add<ConstDecimals<16>> for ConstDecimals<2>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<3>
impl Add<ConstDecimals<16>> for ConstDecimals<3>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<4>
impl Add<ConstDecimals<16>> for ConstDecimals<4>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<5>
impl Add<ConstDecimals<16>> for ConstDecimals<5>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<6>
impl Add<ConstDecimals<16>> for ConstDecimals<6>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<7>
impl Add<ConstDecimals<16>> for ConstDecimals<7>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<8>
impl Add<ConstDecimals<16>> for ConstDecimals<8>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<9>
impl Add<ConstDecimals<16>> for ConstDecimals<9>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<10>
impl Add<ConstDecimals<16>> for ConstDecimals<10>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<11>
impl Add<ConstDecimals<16>> for ConstDecimals<11>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<12>
impl Add<ConstDecimals<16>> for ConstDecimals<12>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<13>
impl Add<ConstDecimals<16>> for ConstDecimals<13>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<14>
impl Add<ConstDecimals<16>> for ConstDecimals<14>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<15>
impl Add<ConstDecimals<16>> for ConstDecimals<15>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<17>
impl Add<ConstDecimals<16>> for ConstDecimals<17>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<18>
impl Add<ConstDecimals<16>> for ConstDecimals<18>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<19>
impl Add<ConstDecimals<16>> for ConstDecimals<19>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<20>
impl Add<ConstDecimals<16>> for ConstDecimals<20>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<21>
impl Add<ConstDecimals<16>> for ConstDecimals<21>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<22>
impl Add<ConstDecimals<16>> for ConstDecimals<22>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<23>
impl Add<ConstDecimals<16>> for ConstDecimals<23>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<24>
impl Add<ConstDecimals<16>> for ConstDecimals<24>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<25>
impl Add<ConstDecimals<16>> for ConstDecimals<25>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<26>
impl Add<ConstDecimals<16>> for ConstDecimals<26>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<27>
impl Add<ConstDecimals<16>> for ConstDecimals<27>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<28>
impl Add<ConstDecimals<16>> for ConstDecimals<28>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<29>
impl Add<ConstDecimals<16>> for ConstDecimals<29>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<30>
impl Add<ConstDecimals<16>> for ConstDecimals<30>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<31>
impl Add<ConstDecimals<16>> for ConstDecimals<31>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<32>
impl Add<ConstDecimals<16>> for ConstDecimals<32>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<33>
impl Add<ConstDecimals<16>> for ConstDecimals<33>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<34>
impl Add<ConstDecimals<16>> for ConstDecimals<34>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<35>
impl Add<ConstDecimals<16>> for ConstDecimals<35>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<36>
impl Add<ConstDecimals<16>> for ConstDecimals<36>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<37>
impl Add<ConstDecimals<16>> for ConstDecimals<37>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<38>
impl Add<ConstDecimals<16>> for ConstDecimals<38>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<39>
impl Add<ConstDecimals<16>> for ConstDecimals<39>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<40>
impl Add<ConstDecimals<16>> for ConstDecimals<40>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<41>
impl Add<ConstDecimals<16>> for ConstDecimals<41>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<42>
impl Add<ConstDecimals<16>> for ConstDecimals<42>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<43>
impl Add<ConstDecimals<16>> for ConstDecimals<43>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<44>
impl Add<ConstDecimals<16>> for ConstDecimals<44>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<45>
impl Add<ConstDecimals<16>> for ConstDecimals<45>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<46>
impl Add<ConstDecimals<16>> for ConstDecimals<46>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<47>
impl Add<ConstDecimals<16>> for ConstDecimals<47>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<48>
impl Add<ConstDecimals<16>> for ConstDecimals<48>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<49>
impl Add<ConstDecimals<16>> for ConstDecimals<49>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<50>
impl Add<ConstDecimals<16>> for ConstDecimals<50>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<51>
impl Add<ConstDecimals<16>> for ConstDecimals<51>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<52>
impl Add<ConstDecimals<16>> for ConstDecimals<52>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<53>
impl Add<ConstDecimals<16>> for ConstDecimals<53>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<54>
impl Add<ConstDecimals<16>> for ConstDecimals<54>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<55>
impl Add<ConstDecimals<16>> for ConstDecimals<55>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<56>
impl Add<ConstDecimals<16>> for ConstDecimals<56>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<57>
impl Add<ConstDecimals<16>> for ConstDecimals<57>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<58>
impl Add<ConstDecimals<16>> for ConstDecimals<58>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<59>
impl Add<ConstDecimals<16>> for ConstDecimals<59>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<60>
impl Add<ConstDecimals<16>> for ConstDecimals<60>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<61>
impl Add<ConstDecimals<16>> for ConstDecimals<61>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<62>
impl Add<ConstDecimals<16>> for ConstDecimals<62>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<63>
impl Add<ConstDecimals<16>> for ConstDecimals<63>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<16>> for ConstDecimals<64>
impl Add<ConstDecimals<16>> for ConstDecimals<64>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<0>
impl Add<ConstDecimals<17>> for ConstDecimals<0>
type Output = ConstDecimals<17>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<1>
impl Add<ConstDecimals<17>> for ConstDecimals<1>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<2>
impl Add<ConstDecimals<17>> for ConstDecimals<2>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<3>
impl Add<ConstDecimals<17>> for ConstDecimals<3>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<4>
impl Add<ConstDecimals<17>> for ConstDecimals<4>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<5>
impl Add<ConstDecimals<17>> for ConstDecimals<5>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<6>
impl Add<ConstDecimals<17>> for ConstDecimals<6>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<7>
impl Add<ConstDecimals<17>> for ConstDecimals<7>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<8>
impl Add<ConstDecimals<17>> for ConstDecimals<8>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<9>
impl Add<ConstDecimals<17>> for ConstDecimals<9>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<10>
impl Add<ConstDecimals<17>> for ConstDecimals<10>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<11>
impl Add<ConstDecimals<17>> for ConstDecimals<11>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<12>
impl Add<ConstDecimals<17>> for ConstDecimals<12>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<13>
impl Add<ConstDecimals<17>> for ConstDecimals<13>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<14>
impl Add<ConstDecimals<17>> for ConstDecimals<14>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<15>
impl Add<ConstDecimals<17>> for ConstDecimals<15>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<16>
impl Add<ConstDecimals<17>> for ConstDecimals<16>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<18>
impl Add<ConstDecimals<17>> for ConstDecimals<18>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<19>
impl Add<ConstDecimals<17>> for ConstDecimals<19>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<20>
impl Add<ConstDecimals<17>> for ConstDecimals<20>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<21>
impl Add<ConstDecimals<17>> for ConstDecimals<21>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<22>
impl Add<ConstDecimals<17>> for ConstDecimals<22>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<23>
impl Add<ConstDecimals<17>> for ConstDecimals<23>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<24>
impl Add<ConstDecimals<17>> for ConstDecimals<24>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<25>
impl Add<ConstDecimals<17>> for ConstDecimals<25>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<26>
impl Add<ConstDecimals<17>> for ConstDecimals<26>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<27>
impl Add<ConstDecimals<17>> for ConstDecimals<27>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<28>
impl Add<ConstDecimals<17>> for ConstDecimals<28>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<29>
impl Add<ConstDecimals<17>> for ConstDecimals<29>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<30>
impl Add<ConstDecimals<17>> for ConstDecimals<30>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<31>
impl Add<ConstDecimals<17>> for ConstDecimals<31>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<32>
impl Add<ConstDecimals<17>> for ConstDecimals<32>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<33>
impl Add<ConstDecimals<17>> for ConstDecimals<33>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<34>
impl Add<ConstDecimals<17>> for ConstDecimals<34>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<35>
impl Add<ConstDecimals<17>> for ConstDecimals<35>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<36>
impl Add<ConstDecimals<17>> for ConstDecimals<36>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<37>
impl Add<ConstDecimals<17>> for ConstDecimals<37>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<38>
impl Add<ConstDecimals<17>> for ConstDecimals<38>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<39>
impl Add<ConstDecimals<17>> for ConstDecimals<39>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<40>
impl Add<ConstDecimals<17>> for ConstDecimals<40>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<41>
impl Add<ConstDecimals<17>> for ConstDecimals<41>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<42>
impl Add<ConstDecimals<17>> for ConstDecimals<42>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<43>
impl Add<ConstDecimals<17>> for ConstDecimals<43>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<44>
impl Add<ConstDecimals<17>> for ConstDecimals<44>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<45>
impl Add<ConstDecimals<17>> for ConstDecimals<45>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<46>
impl Add<ConstDecimals<17>> for ConstDecimals<46>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<47>
impl Add<ConstDecimals<17>> for ConstDecimals<47>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<48>
impl Add<ConstDecimals<17>> for ConstDecimals<48>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<49>
impl Add<ConstDecimals<17>> for ConstDecimals<49>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<50>
impl Add<ConstDecimals<17>> for ConstDecimals<50>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<51>
impl Add<ConstDecimals<17>> for ConstDecimals<51>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<52>
impl Add<ConstDecimals<17>> for ConstDecimals<52>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<53>
impl Add<ConstDecimals<17>> for ConstDecimals<53>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<54>
impl Add<ConstDecimals<17>> for ConstDecimals<54>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<55>
impl Add<ConstDecimals<17>> for ConstDecimals<55>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<56>
impl Add<ConstDecimals<17>> for ConstDecimals<56>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<57>
impl Add<ConstDecimals<17>> for ConstDecimals<57>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<58>
impl Add<ConstDecimals<17>> for ConstDecimals<58>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<59>
impl Add<ConstDecimals<17>> for ConstDecimals<59>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<60>
impl Add<ConstDecimals<17>> for ConstDecimals<60>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<61>
impl Add<ConstDecimals<17>> for ConstDecimals<61>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<62>
impl Add<ConstDecimals<17>> for ConstDecimals<62>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<63>
impl Add<ConstDecimals<17>> for ConstDecimals<63>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<17>> for ConstDecimals<64>
impl Add<ConstDecimals<17>> for ConstDecimals<64>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<0>
impl Add<ConstDecimals<18>> for ConstDecimals<0>
type Output = ConstDecimals<18>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<1>
impl Add<ConstDecimals<18>> for ConstDecimals<1>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<2>
impl Add<ConstDecimals<18>> for ConstDecimals<2>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<3>
impl Add<ConstDecimals<18>> for ConstDecimals<3>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<4>
impl Add<ConstDecimals<18>> for ConstDecimals<4>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<5>
impl Add<ConstDecimals<18>> for ConstDecimals<5>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<6>
impl Add<ConstDecimals<18>> for ConstDecimals<6>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<7>
impl Add<ConstDecimals<18>> for ConstDecimals<7>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<8>
impl Add<ConstDecimals<18>> for ConstDecimals<8>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<9>
impl Add<ConstDecimals<18>> for ConstDecimals<9>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<10>
impl Add<ConstDecimals<18>> for ConstDecimals<10>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<11>
impl Add<ConstDecimals<18>> for ConstDecimals<11>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<12>
impl Add<ConstDecimals<18>> for ConstDecimals<12>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<13>
impl Add<ConstDecimals<18>> for ConstDecimals<13>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<14>
impl Add<ConstDecimals<18>> for ConstDecimals<14>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<15>
impl Add<ConstDecimals<18>> for ConstDecimals<15>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<16>
impl Add<ConstDecimals<18>> for ConstDecimals<16>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<17>
impl Add<ConstDecimals<18>> for ConstDecimals<17>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<19>
impl Add<ConstDecimals<18>> for ConstDecimals<19>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<20>
impl Add<ConstDecimals<18>> for ConstDecimals<20>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<21>
impl Add<ConstDecimals<18>> for ConstDecimals<21>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<22>
impl Add<ConstDecimals<18>> for ConstDecimals<22>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<23>
impl Add<ConstDecimals<18>> for ConstDecimals<23>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<24>
impl Add<ConstDecimals<18>> for ConstDecimals<24>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<25>
impl Add<ConstDecimals<18>> for ConstDecimals<25>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<26>
impl Add<ConstDecimals<18>> for ConstDecimals<26>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<27>
impl Add<ConstDecimals<18>> for ConstDecimals<27>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<28>
impl Add<ConstDecimals<18>> for ConstDecimals<28>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<29>
impl Add<ConstDecimals<18>> for ConstDecimals<29>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<30>
impl Add<ConstDecimals<18>> for ConstDecimals<30>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<31>
impl Add<ConstDecimals<18>> for ConstDecimals<31>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<32>
impl Add<ConstDecimals<18>> for ConstDecimals<32>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<33>
impl Add<ConstDecimals<18>> for ConstDecimals<33>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<34>
impl Add<ConstDecimals<18>> for ConstDecimals<34>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<35>
impl Add<ConstDecimals<18>> for ConstDecimals<35>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<36>
impl Add<ConstDecimals<18>> for ConstDecimals<36>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<37>
impl Add<ConstDecimals<18>> for ConstDecimals<37>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<38>
impl Add<ConstDecimals<18>> for ConstDecimals<38>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<39>
impl Add<ConstDecimals<18>> for ConstDecimals<39>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<40>
impl Add<ConstDecimals<18>> for ConstDecimals<40>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<41>
impl Add<ConstDecimals<18>> for ConstDecimals<41>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<42>
impl Add<ConstDecimals<18>> for ConstDecimals<42>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<43>
impl Add<ConstDecimals<18>> for ConstDecimals<43>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<44>
impl Add<ConstDecimals<18>> for ConstDecimals<44>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<45>
impl Add<ConstDecimals<18>> for ConstDecimals<45>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<46>
impl Add<ConstDecimals<18>> for ConstDecimals<46>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<47>
impl Add<ConstDecimals<18>> for ConstDecimals<47>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<48>
impl Add<ConstDecimals<18>> for ConstDecimals<48>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<49>
impl Add<ConstDecimals<18>> for ConstDecimals<49>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<50>
impl Add<ConstDecimals<18>> for ConstDecimals<50>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<51>
impl Add<ConstDecimals<18>> for ConstDecimals<51>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<52>
impl Add<ConstDecimals<18>> for ConstDecimals<52>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<53>
impl Add<ConstDecimals<18>> for ConstDecimals<53>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<54>
impl Add<ConstDecimals<18>> for ConstDecimals<54>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<55>
impl Add<ConstDecimals<18>> for ConstDecimals<55>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<56>
impl Add<ConstDecimals<18>> for ConstDecimals<56>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<57>
impl Add<ConstDecimals<18>> for ConstDecimals<57>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<58>
impl Add<ConstDecimals<18>> for ConstDecimals<58>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<59>
impl Add<ConstDecimals<18>> for ConstDecimals<59>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<60>
impl Add<ConstDecimals<18>> for ConstDecimals<60>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<61>
impl Add<ConstDecimals<18>> for ConstDecimals<61>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<62>
impl Add<ConstDecimals<18>> for ConstDecimals<62>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<63>
impl Add<ConstDecimals<18>> for ConstDecimals<63>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<18>> for ConstDecimals<64>
impl Add<ConstDecimals<18>> for ConstDecimals<64>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<0>
impl Add<ConstDecimals<19>> for ConstDecimals<0>
type Output = ConstDecimals<19>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<1>
impl Add<ConstDecimals<19>> for ConstDecimals<1>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<2>
impl Add<ConstDecimals<19>> for ConstDecimals<2>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<3>
impl Add<ConstDecimals<19>> for ConstDecimals<3>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<4>
impl Add<ConstDecimals<19>> for ConstDecimals<4>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<5>
impl Add<ConstDecimals<19>> for ConstDecimals<5>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<6>
impl Add<ConstDecimals<19>> for ConstDecimals<6>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<7>
impl Add<ConstDecimals<19>> for ConstDecimals<7>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<8>
impl Add<ConstDecimals<19>> for ConstDecimals<8>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<9>
impl Add<ConstDecimals<19>> for ConstDecimals<9>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<10>
impl Add<ConstDecimals<19>> for ConstDecimals<10>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<11>
impl Add<ConstDecimals<19>> for ConstDecimals<11>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<12>
impl Add<ConstDecimals<19>> for ConstDecimals<12>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<13>
impl Add<ConstDecimals<19>> for ConstDecimals<13>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<14>
impl Add<ConstDecimals<19>> for ConstDecimals<14>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<15>
impl Add<ConstDecimals<19>> for ConstDecimals<15>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<16>
impl Add<ConstDecimals<19>> for ConstDecimals<16>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<17>
impl Add<ConstDecimals<19>> for ConstDecimals<17>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<18>
impl Add<ConstDecimals<19>> for ConstDecimals<18>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<20>
impl Add<ConstDecimals<19>> for ConstDecimals<20>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<21>
impl Add<ConstDecimals<19>> for ConstDecimals<21>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<22>
impl Add<ConstDecimals<19>> for ConstDecimals<22>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<23>
impl Add<ConstDecimals<19>> for ConstDecimals<23>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<24>
impl Add<ConstDecimals<19>> for ConstDecimals<24>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<25>
impl Add<ConstDecimals<19>> for ConstDecimals<25>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<26>
impl Add<ConstDecimals<19>> for ConstDecimals<26>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<27>
impl Add<ConstDecimals<19>> for ConstDecimals<27>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<28>
impl Add<ConstDecimals<19>> for ConstDecimals<28>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<29>
impl Add<ConstDecimals<19>> for ConstDecimals<29>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<30>
impl Add<ConstDecimals<19>> for ConstDecimals<30>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<31>
impl Add<ConstDecimals<19>> for ConstDecimals<31>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<32>
impl Add<ConstDecimals<19>> for ConstDecimals<32>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<33>
impl Add<ConstDecimals<19>> for ConstDecimals<33>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<34>
impl Add<ConstDecimals<19>> for ConstDecimals<34>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<35>
impl Add<ConstDecimals<19>> for ConstDecimals<35>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<36>
impl Add<ConstDecimals<19>> for ConstDecimals<36>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<37>
impl Add<ConstDecimals<19>> for ConstDecimals<37>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<38>
impl Add<ConstDecimals<19>> for ConstDecimals<38>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<39>
impl Add<ConstDecimals<19>> for ConstDecimals<39>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<40>
impl Add<ConstDecimals<19>> for ConstDecimals<40>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<41>
impl Add<ConstDecimals<19>> for ConstDecimals<41>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<42>
impl Add<ConstDecimals<19>> for ConstDecimals<42>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<43>
impl Add<ConstDecimals<19>> for ConstDecimals<43>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<44>
impl Add<ConstDecimals<19>> for ConstDecimals<44>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<45>
impl Add<ConstDecimals<19>> for ConstDecimals<45>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<46>
impl Add<ConstDecimals<19>> for ConstDecimals<46>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<47>
impl Add<ConstDecimals<19>> for ConstDecimals<47>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<48>
impl Add<ConstDecimals<19>> for ConstDecimals<48>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<49>
impl Add<ConstDecimals<19>> for ConstDecimals<49>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<50>
impl Add<ConstDecimals<19>> for ConstDecimals<50>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<51>
impl Add<ConstDecimals<19>> for ConstDecimals<51>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<52>
impl Add<ConstDecimals<19>> for ConstDecimals<52>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<53>
impl Add<ConstDecimals<19>> for ConstDecimals<53>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<54>
impl Add<ConstDecimals<19>> for ConstDecimals<54>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<55>
impl Add<ConstDecimals<19>> for ConstDecimals<55>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<56>
impl Add<ConstDecimals<19>> for ConstDecimals<56>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<57>
impl Add<ConstDecimals<19>> for ConstDecimals<57>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<58>
impl Add<ConstDecimals<19>> for ConstDecimals<58>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<59>
impl Add<ConstDecimals<19>> for ConstDecimals<59>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<60>
impl Add<ConstDecimals<19>> for ConstDecimals<60>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<61>
impl Add<ConstDecimals<19>> for ConstDecimals<61>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<62>
impl Add<ConstDecimals<19>> for ConstDecimals<62>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<63>
impl Add<ConstDecimals<19>> for ConstDecimals<63>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<19>> for ConstDecimals<64>
impl Add<ConstDecimals<19>> for ConstDecimals<64>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<0>
impl Add<ConstDecimals<20>> for ConstDecimals<0>
type Output = ConstDecimals<20>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<1>
impl Add<ConstDecimals<20>> for ConstDecimals<1>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<2>
impl Add<ConstDecimals<20>> for ConstDecimals<2>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<3>
impl Add<ConstDecimals<20>> for ConstDecimals<3>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<4>
impl Add<ConstDecimals<20>> for ConstDecimals<4>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<5>
impl Add<ConstDecimals<20>> for ConstDecimals<5>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<6>
impl Add<ConstDecimals<20>> for ConstDecimals<6>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<7>
impl Add<ConstDecimals<20>> for ConstDecimals<7>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<8>
impl Add<ConstDecimals<20>> for ConstDecimals<8>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<9>
impl Add<ConstDecimals<20>> for ConstDecimals<9>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<10>
impl Add<ConstDecimals<20>> for ConstDecimals<10>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<11>
impl Add<ConstDecimals<20>> for ConstDecimals<11>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<12>
impl Add<ConstDecimals<20>> for ConstDecimals<12>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<13>
impl Add<ConstDecimals<20>> for ConstDecimals<13>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<14>
impl Add<ConstDecimals<20>> for ConstDecimals<14>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<15>
impl Add<ConstDecimals<20>> for ConstDecimals<15>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<16>
impl Add<ConstDecimals<20>> for ConstDecimals<16>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<17>
impl Add<ConstDecimals<20>> for ConstDecimals<17>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<18>
impl Add<ConstDecimals<20>> for ConstDecimals<18>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<19>
impl Add<ConstDecimals<20>> for ConstDecimals<19>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<21>
impl Add<ConstDecimals<20>> for ConstDecimals<21>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<22>
impl Add<ConstDecimals<20>> for ConstDecimals<22>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<23>
impl Add<ConstDecimals<20>> for ConstDecimals<23>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<24>
impl Add<ConstDecimals<20>> for ConstDecimals<24>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<25>
impl Add<ConstDecimals<20>> for ConstDecimals<25>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<26>
impl Add<ConstDecimals<20>> for ConstDecimals<26>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<27>
impl Add<ConstDecimals<20>> for ConstDecimals<27>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<28>
impl Add<ConstDecimals<20>> for ConstDecimals<28>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<29>
impl Add<ConstDecimals<20>> for ConstDecimals<29>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<30>
impl Add<ConstDecimals<20>> for ConstDecimals<30>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<31>
impl Add<ConstDecimals<20>> for ConstDecimals<31>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<32>
impl Add<ConstDecimals<20>> for ConstDecimals<32>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<33>
impl Add<ConstDecimals<20>> for ConstDecimals<33>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<34>
impl Add<ConstDecimals<20>> for ConstDecimals<34>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<35>
impl Add<ConstDecimals<20>> for ConstDecimals<35>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<36>
impl Add<ConstDecimals<20>> for ConstDecimals<36>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<37>
impl Add<ConstDecimals<20>> for ConstDecimals<37>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<38>
impl Add<ConstDecimals<20>> for ConstDecimals<38>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<39>
impl Add<ConstDecimals<20>> for ConstDecimals<39>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<40>
impl Add<ConstDecimals<20>> for ConstDecimals<40>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<41>
impl Add<ConstDecimals<20>> for ConstDecimals<41>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<42>
impl Add<ConstDecimals<20>> for ConstDecimals<42>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<43>
impl Add<ConstDecimals<20>> for ConstDecimals<43>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<44>
impl Add<ConstDecimals<20>> for ConstDecimals<44>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<45>
impl Add<ConstDecimals<20>> for ConstDecimals<45>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<46>
impl Add<ConstDecimals<20>> for ConstDecimals<46>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<47>
impl Add<ConstDecimals<20>> for ConstDecimals<47>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<48>
impl Add<ConstDecimals<20>> for ConstDecimals<48>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<49>
impl Add<ConstDecimals<20>> for ConstDecimals<49>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<50>
impl Add<ConstDecimals<20>> for ConstDecimals<50>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<51>
impl Add<ConstDecimals<20>> for ConstDecimals<51>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<52>
impl Add<ConstDecimals<20>> for ConstDecimals<52>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<53>
impl Add<ConstDecimals<20>> for ConstDecimals<53>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<54>
impl Add<ConstDecimals<20>> for ConstDecimals<54>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<55>
impl Add<ConstDecimals<20>> for ConstDecimals<55>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<56>
impl Add<ConstDecimals<20>> for ConstDecimals<56>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<57>
impl Add<ConstDecimals<20>> for ConstDecimals<57>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<58>
impl Add<ConstDecimals<20>> for ConstDecimals<58>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<59>
impl Add<ConstDecimals<20>> for ConstDecimals<59>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<60>
impl Add<ConstDecimals<20>> for ConstDecimals<60>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<61>
impl Add<ConstDecimals<20>> for ConstDecimals<61>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<62>
impl Add<ConstDecimals<20>> for ConstDecimals<62>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<63>
impl Add<ConstDecimals<20>> for ConstDecimals<63>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<20>> for ConstDecimals<64>
impl Add<ConstDecimals<20>> for ConstDecimals<64>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<0>
impl Add<ConstDecimals<21>> for ConstDecimals<0>
type Output = ConstDecimals<21>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<1>
impl Add<ConstDecimals<21>> for ConstDecimals<1>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<2>
impl Add<ConstDecimals<21>> for ConstDecimals<2>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<3>
impl Add<ConstDecimals<21>> for ConstDecimals<3>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<4>
impl Add<ConstDecimals<21>> for ConstDecimals<4>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<5>
impl Add<ConstDecimals<21>> for ConstDecimals<5>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<6>
impl Add<ConstDecimals<21>> for ConstDecimals<6>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<7>
impl Add<ConstDecimals<21>> for ConstDecimals<7>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<8>
impl Add<ConstDecimals<21>> for ConstDecimals<8>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<9>
impl Add<ConstDecimals<21>> for ConstDecimals<9>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<10>
impl Add<ConstDecimals<21>> for ConstDecimals<10>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<11>
impl Add<ConstDecimals<21>> for ConstDecimals<11>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<12>
impl Add<ConstDecimals<21>> for ConstDecimals<12>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<13>
impl Add<ConstDecimals<21>> for ConstDecimals<13>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<14>
impl Add<ConstDecimals<21>> for ConstDecimals<14>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<15>
impl Add<ConstDecimals<21>> for ConstDecimals<15>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<16>
impl Add<ConstDecimals<21>> for ConstDecimals<16>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<17>
impl Add<ConstDecimals<21>> for ConstDecimals<17>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<18>
impl Add<ConstDecimals<21>> for ConstDecimals<18>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<19>
impl Add<ConstDecimals<21>> for ConstDecimals<19>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<20>
impl Add<ConstDecimals<21>> for ConstDecimals<20>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<22>
impl Add<ConstDecimals<21>> for ConstDecimals<22>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<23>
impl Add<ConstDecimals<21>> for ConstDecimals<23>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<24>
impl Add<ConstDecimals<21>> for ConstDecimals<24>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<25>
impl Add<ConstDecimals<21>> for ConstDecimals<25>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<26>
impl Add<ConstDecimals<21>> for ConstDecimals<26>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<27>
impl Add<ConstDecimals<21>> for ConstDecimals<27>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<28>
impl Add<ConstDecimals<21>> for ConstDecimals<28>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<29>
impl Add<ConstDecimals<21>> for ConstDecimals<29>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<30>
impl Add<ConstDecimals<21>> for ConstDecimals<30>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<31>
impl Add<ConstDecimals<21>> for ConstDecimals<31>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<32>
impl Add<ConstDecimals<21>> for ConstDecimals<32>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<33>
impl Add<ConstDecimals<21>> for ConstDecimals<33>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<34>
impl Add<ConstDecimals<21>> for ConstDecimals<34>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<35>
impl Add<ConstDecimals<21>> for ConstDecimals<35>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<36>
impl Add<ConstDecimals<21>> for ConstDecimals<36>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<37>
impl Add<ConstDecimals<21>> for ConstDecimals<37>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<38>
impl Add<ConstDecimals<21>> for ConstDecimals<38>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<39>
impl Add<ConstDecimals<21>> for ConstDecimals<39>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<40>
impl Add<ConstDecimals<21>> for ConstDecimals<40>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<41>
impl Add<ConstDecimals<21>> for ConstDecimals<41>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<42>
impl Add<ConstDecimals<21>> for ConstDecimals<42>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<43>
impl Add<ConstDecimals<21>> for ConstDecimals<43>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<44>
impl Add<ConstDecimals<21>> for ConstDecimals<44>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<45>
impl Add<ConstDecimals<21>> for ConstDecimals<45>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<46>
impl Add<ConstDecimals<21>> for ConstDecimals<46>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<47>
impl Add<ConstDecimals<21>> for ConstDecimals<47>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<48>
impl Add<ConstDecimals<21>> for ConstDecimals<48>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<49>
impl Add<ConstDecimals<21>> for ConstDecimals<49>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<50>
impl Add<ConstDecimals<21>> for ConstDecimals<50>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<51>
impl Add<ConstDecimals<21>> for ConstDecimals<51>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<52>
impl Add<ConstDecimals<21>> for ConstDecimals<52>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<53>
impl Add<ConstDecimals<21>> for ConstDecimals<53>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<54>
impl Add<ConstDecimals<21>> for ConstDecimals<54>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<55>
impl Add<ConstDecimals<21>> for ConstDecimals<55>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<56>
impl Add<ConstDecimals<21>> for ConstDecimals<56>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<57>
impl Add<ConstDecimals<21>> for ConstDecimals<57>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<58>
impl Add<ConstDecimals<21>> for ConstDecimals<58>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<59>
impl Add<ConstDecimals<21>> for ConstDecimals<59>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<60>
impl Add<ConstDecimals<21>> for ConstDecimals<60>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<61>
impl Add<ConstDecimals<21>> for ConstDecimals<61>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<62>
impl Add<ConstDecimals<21>> for ConstDecimals<62>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<63>
impl Add<ConstDecimals<21>> for ConstDecimals<63>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<21>> for ConstDecimals<64>
impl Add<ConstDecimals<21>> for ConstDecimals<64>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<0>
impl Add<ConstDecimals<22>> for ConstDecimals<0>
type Output = ConstDecimals<22>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<1>
impl Add<ConstDecimals<22>> for ConstDecimals<1>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<2>
impl Add<ConstDecimals<22>> for ConstDecimals<2>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<3>
impl Add<ConstDecimals<22>> for ConstDecimals<3>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<4>
impl Add<ConstDecimals<22>> for ConstDecimals<4>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<5>
impl Add<ConstDecimals<22>> for ConstDecimals<5>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<6>
impl Add<ConstDecimals<22>> for ConstDecimals<6>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<7>
impl Add<ConstDecimals<22>> for ConstDecimals<7>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<8>
impl Add<ConstDecimals<22>> for ConstDecimals<8>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<9>
impl Add<ConstDecimals<22>> for ConstDecimals<9>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<10>
impl Add<ConstDecimals<22>> for ConstDecimals<10>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<11>
impl Add<ConstDecimals<22>> for ConstDecimals<11>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<12>
impl Add<ConstDecimals<22>> for ConstDecimals<12>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<13>
impl Add<ConstDecimals<22>> for ConstDecimals<13>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<14>
impl Add<ConstDecimals<22>> for ConstDecimals<14>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<15>
impl Add<ConstDecimals<22>> for ConstDecimals<15>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<16>
impl Add<ConstDecimals<22>> for ConstDecimals<16>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<17>
impl Add<ConstDecimals<22>> for ConstDecimals<17>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<18>
impl Add<ConstDecimals<22>> for ConstDecimals<18>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<19>
impl Add<ConstDecimals<22>> for ConstDecimals<19>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<20>
impl Add<ConstDecimals<22>> for ConstDecimals<20>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<21>
impl Add<ConstDecimals<22>> for ConstDecimals<21>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<23>
impl Add<ConstDecimals<22>> for ConstDecimals<23>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<24>
impl Add<ConstDecimals<22>> for ConstDecimals<24>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<25>
impl Add<ConstDecimals<22>> for ConstDecimals<25>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<26>
impl Add<ConstDecimals<22>> for ConstDecimals<26>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<27>
impl Add<ConstDecimals<22>> for ConstDecimals<27>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<28>
impl Add<ConstDecimals<22>> for ConstDecimals<28>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<29>
impl Add<ConstDecimals<22>> for ConstDecimals<29>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<30>
impl Add<ConstDecimals<22>> for ConstDecimals<30>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<31>
impl Add<ConstDecimals<22>> for ConstDecimals<31>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<32>
impl Add<ConstDecimals<22>> for ConstDecimals<32>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<33>
impl Add<ConstDecimals<22>> for ConstDecimals<33>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<34>
impl Add<ConstDecimals<22>> for ConstDecimals<34>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<35>
impl Add<ConstDecimals<22>> for ConstDecimals<35>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<36>
impl Add<ConstDecimals<22>> for ConstDecimals<36>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<37>
impl Add<ConstDecimals<22>> for ConstDecimals<37>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<38>
impl Add<ConstDecimals<22>> for ConstDecimals<38>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<39>
impl Add<ConstDecimals<22>> for ConstDecimals<39>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<40>
impl Add<ConstDecimals<22>> for ConstDecimals<40>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<41>
impl Add<ConstDecimals<22>> for ConstDecimals<41>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<42>
impl Add<ConstDecimals<22>> for ConstDecimals<42>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<43>
impl Add<ConstDecimals<22>> for ConstDecimals<43>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<44>
impl Add<ConstDecimals<22>> for ConstDecimals<44>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<45>
impl Add<ConstDecimals<22>> for ConstDecimals<45>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<46>
impl Add<ConstDecimals<22>> for ConstDecimals<46>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<47>
impl Add<ConstDecimals<22>> for ConstDecimals<47>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<48>
impl Add<ConstDecimals<22>> for ConstDecimals<48>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<49>
impl Add<ConstDecimals<22>> for ConstDecimals<49>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<50>
impl Add<ConstDecimals<22>> for ConstDecimals<50>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<51>
impl Add<ConstDecimals<22>> for ConstDecimals<51>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<52>
impl Add<ConstDecimals<22>> for ConstDecimals<52>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<53>
impl Add<ConstDecimals<22>> for ConstDecimals<53>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<54>
impl Add<ConstDecimals<22>> for ConstDecimals<54>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<55>
impl Add<ConstDecimals<22>> for ConstDecimals<55>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<56>
impl Add<ConstDecimals<22>> for ConstDecimals<56>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<57>
impl Add<ConstDecimals<22>> for ConstDecimals<57>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<58>
impl Add<ConstDecimals<22>> for ConstDecimals<58>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<59>
impl Add<ConstDecimals<22>> for ConstDecimals<59>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<60>
impl Add<ConstDecimals<22>> for ConstDecimals<60>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<61>
impl Add<ConstDecimals<22>> for ConstDecimals<61>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<62>
impl Add<ConstDecimals<22>> for ConstDecimals<62>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<63>
impl Add<ConstDecimals<22>> for ConstDecimals<63>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<22>> for ConstDecimals<64>
impl Add<ConstDecimals<22>> for ConstDecimals<64>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<0>
impl Add<ConstDecimals<23>> for ConstDecimals<0>
type Output = ConstDecimals<23>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<1>
impl Add<ConstDecimals<23>> for ConstDecimals<1>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<2>
impl Add<ConstDecimals<23>> for ConstDecimals<2>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<3>
impl Add<ConstDecimals<23>> for ConstDecimals<3>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<4>
impl Add<ConstDecimals<23>> for ConstDecimals<4>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<5>
impl Add<ConstDecimals<23>> for ConstDecimals<5>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<6>
impl Add<ConstDecimals<23>> for ConstDecimals<6>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<7>
impl Add<ConstDecimals<23>> for ConstDecimals<7>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<8>
impl Add<ConstDecimals<23>> for ConstDecimals<8>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<9>
impl Add<ConstDecimals<23>> for ConstDecimals<9>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<10>
impl Add<ConstDecimals<23>> for ConstDecimals<10>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<11>
impl Add<ConstDecimals<23>> for ConstDecimals<11>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<12>
impl Add<ConstDecimals<23>> for ConstDecimals<12>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<13>
impl Add<ConstDecimals<23>> for ConstDecimals<13>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<14>
impl Add<ConstDecimals<23>> for ConstDecimals<14>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<15>
impl Add<ConstDecimals<23>> for ConstDecimals<15>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<16>
impl Add<ConstDecimals<23>> for ConstDecimals<16>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<17>
impl Add<ConstDecimals<23>> for ConstDecimals<17>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<18>
impl Add<ConstDecimals<23>> for ConstDecimals<18>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<19>
impl Add<ConstDecimals<23>> for ConstDecimals<19>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<20>
impl Add<ConstDecimals<23>> for ConstDecimals<20>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<21>
impl Add<ConstDecimals<23>> for ConstDecimals<21>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<22>
impl Add<ConstDecimals<23>> for ConstDecimals<22>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<24>
impl Add<ConstDecimals<23>> for ConstDecimals<24>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<25>
impl Add<ConstDecimals<23>> for ConstDecimals<25>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<26>
impl Add<ConstDecimals<23>> for ConstDecimals<26>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<27>
impl Add<ConstDecimals<23>> for ConstDecimals<27>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<28>
impl Add<ConstDecimals<23>> for ConstDecimals<28>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<29>
impl Add<ConstDecimals<23>> for ConstDecimals<29>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<30>
impl Add<ConstDecimals<23>> for ConstDecimals<30>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<31>
impl Add<ConstDecimals<23>> for ConstDecimals<31>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<32>
impl Add<ConstDecimals<23>> for ConstDecimals<32>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<33>
impl Add<ConstDecimals<23>> for ConstDecimals<33>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<34>
impl Add<ConstDecimals<23>> for ConstDecimals<34>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<35>
impl Add<ConstDecimals<23>> for ConstDecimals<35>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<36>
impl Add<ConstDecimals<23>> for ConstDecimals<36>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<37>
impl Add<ConstDecimals<23>> for ConstDecimals<37>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<38>
impl Add<ConstDecimals<23>> for ConstDecimals<38>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<39>
impl Add<ConstDecimals<23>> for ConstDecimals<39>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<40>
impl Add<ConstDecimals<23>> for ConstDecimals<40>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<41>
impl Add<ConstDecimals<23>> for ConstDecimals<41>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<42>
impl Add<ConstDecimals<23>> for ConstDecimals<42>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<43>
impl Add<ConstDecimals<23>> for ConstDecimals<43>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<44>
impl Add<ConstDecimals<23>> for ConstDecimals<44>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<45>
impl Add<ConstDecimals<23>> for ConstDecimals<45>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<46>
impl Add<ConstDecimals<23>> for ConstDecimals<46>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<47>
impl Add<ConstDecimals<23>> for ConstDecimals<47>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<48>
impl Add<ConstDecimals<23>> for ConstDecimals<48>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<49>
impl Add<ConstDecimals<23>> for ConstDecimals<49>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<50>
impl Add<ConstDecimals<23>> for ConstDecimals<50>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<51>
impl Add<ConstDecimals<23>> for ConstDecimals<51>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<52>
impl Add<ConstDecimals<23>> for ConstDecimals<52>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<53>
impl Add<ConstDecimals<23>> for ConstDecimals<53>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<54>
impl Add<ConstDecimals<23>> for ConstDecimals<54>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<55>
impl Add<ConstDecimals<23>> for ConstDecimals<55>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<56>
impl Add<ConstDecimals<23>> for ConstDecimals<56>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<57>
impl Add<ConstDecimals<23>> for ConstDecimals<57>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<58>
impl Add<ConstDecimals<23>> for ConstDecimals<58>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<59>
impl Add<ConstDecimals<23>> for ConstDecimals<59>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<60>
impl Add<ConstDecimals<23>> for ConstDecimals<60>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<61>
impl Add<ConstDecimals<23>> for ConstDecimals<61>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<62>
impl Add<ConstDecimals<23>> for ConstDecimals<62>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<63>
impl Add<ConstDecimals<23>> for ConstDecimals<63>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<23>> for ConstDecimals<64>
impl Add<ConstDecimals<23>> for ConstDecimals<64>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<0>
impl Add<ConstDecimals<24>> for ConstDecimals<0>
type Output = ConstDecimals<24>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<1>
impl Add<ConstDecimals<24>> for ConstDecimals<1>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<2>
impl Add<ConstDecimals<24>> for ConstDecimals<2>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<3>
impl Add<ConstDecimals<24>> for ConstDecimals<3>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<4>
impl Add<ConstDecimals<24>> for ConstDecimals<4>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<5>
impl Add<ConstDecimals<24>> for ConstDecimals<5>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<6>
impl Add<ConstDecimals<24>> for ConstDecimals<6>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<7>
impl Add<ConstDecimals<24>> for ConstDecimals<7>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<8>
impl Add<ConstDecimals<24>> for ConstDecimals<8>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<9>
impl Add<ConstDecimals<24>> for ConstDecimals<9>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<10>
impl Add<ConstDecimals<24>> for ConstDecimals<10>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<11>
impl Add<ConstDecimals<24>> for ConstDecimals<11>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<12>
impl Add<ConstDecimals<24>> for ConstDecimals<12>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<13>
impl Add<ConstDecimals<24>> for ConstDecimals<13>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<14>
impl Add<ConstDecimals<24>> for ConstDecimals<14>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<15>
impl Add<ConstDecimals<24>> for ConstDecimals<15>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<16>
impl Add<ConstDecimals<24>> for ConstDecimals<16>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<17>
impl Add<ConstDecimals<24>> for ConstDecimals<17>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<18>
impl Add<ConstDecimals<24>> for ConstDecimals<18>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<19>
impl Add<ConstDecimals<24>> for ConstDecimals<19>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<20>
impl Add<ConstDecimals<24>> for ConstDecimals<20>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<21>
impl Add<ConstDecimals<24>> for ConstDecimals<21>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<22>
impl Add<ConstDecimals<24>> for ConstDecimals<22>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<23>
impl Add<ConstDecimals<24>> for ConstDecimals<23>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<25>
impl Add<ConstDecimals<24>> for ConstDecimals<25>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<26>
impl Add<ConstDecimals<24>> for ConstDecimals<26>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<27>
impl Add<ConstDecimals<24>> for ConstDecimals<27>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<28>
impl Add<ConstDecimals<24>> for ConstDecimals<28>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<29>
impl Add<ConstDecimals<24>> for ConstDecimals<29>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<30>
impl Add<ConstDecimals<24>> for ConstDecimals<30>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<31>
impl Add<ConstDecimals<24>> for ConstDecimals<31>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<32>
impl Add<ConstDecimals<24>> for ConstDecimals<32>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<33>
impl Add<ConstDecimals<24>> for ConstDecimals<33>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<34>
impl Add<ConstDecimals<24>> for ConstDecimals<34>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<35>
impl Add<ConstDecimals<24>> for ConstDecimals<35>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<36>
impl Add<ConstDecimals<24>> for ConstDecimals<36>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<37>
impl Add<ConstDecimals<24>> for ConstDecimals<37>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<38>
impl Add<ConstDecimals<24>> for ConstDecimals<38>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<39>
impl Add<ConstDecimals<24>> for ConstDecimals<39>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<40>
impl Add<ConstDecimals<24>> for ConstDecimals<40>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<41>
impl Add<ConstDecimals<24>> for ConstDecimals<41>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<42>
impl Add<ConstDecimals<24>> for ConstDecimals<42>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<43>
impl Add<ConstDecimals<24>> for ConstDecimals<43>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<44>
impl Add<ConstDecimals<24>> for ConstDecimals<44>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<45>
impl Add<ConstDecimals<24>> for ConstDecimals<45>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<46>
impl Add<ConstDecimals<24>> for ConstDecimals<46>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<47>
impl Add<ConstDecimals<24>> for ConstDecimals<47>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<48>
impl Add<ConstDecimals<24>> for ConstDecimals<48>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<49>
impl Add<ConstDecimals<24>> for ConstDecimals<49>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<50>
impl Add<ConstDecimals<24>> for ConstDecimals<50>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<51>
impl Add<ConstDecimals<24>> for ConstDecimals<51>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<52>
impl Add<ConstDecimals<24>> for ConstDecimals<52>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<53>
impl Add<ConstDecimals<24>> for ConstDecimals<53>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<54>
impl Add<ConstDecimals<24>> for ConstDecimals<54>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<55>
impl Add<ConstDecimals<24>> for ConstDecimals<55>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<56>
impl Add<ConstDecimals<24>> for ConstDecimals<56>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<57>
impl Add<ConstDecimals<24>> for ConstDecimals<57>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<58>
impl Add<ConstDecimals<24>> for ConstDecimals<58>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<59>
impl Add<ConstDecimals<24>> for ConstDecimals<59>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<60>
impl Add<ConstDecimals<24>> for ConstDecimals<60>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<61>
impl Add<ConstDecimals<24>> for ConstDecimals<61>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<62>
impl Add<ConstDecimals<24>> for ConstDecimals<62>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<63>
impl Add<ConstDecimals<24>> for ConstDecimals<63>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<24>> for ConstDecimals<64>
impl Add<ConstDecimals<24>> for ConstDecimals<64>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<0>
impl Add<ConstDecimals<25>> for ConstDecimals<0>
type Output = ConstDecimals<25>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<1>
impl Add<ConstDecimals<25>> for ConstDecimals<1>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<2>
impl Add<ConstDecimals<25>> for ConstDecimals<2>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<3>
impl Add<ConstDecimals<25>> for ConstDecimals<3>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<4>
impl Add<ConstDecimals<25>> for ConstDecimals<4>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<5>
impl Add<ConstDecimals<25>> for ConstDecimals<5>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<6>
impl Add<ConstDecimals<25>> for ConstDecimals<6>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<7>
impl Add<ConstDecimals<25>> for ConstDecimals<7>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<8>
impl Add<ConstDecimals<25>> for ConstDecimals<8>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<9>
impl Add<ConstDecimals<25>> for ConstDecimals<9>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<10>
impl Add<ConstDecimals<25>> for ConstDecimals<10>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<11>
impl Add<ConstDecimals<25>> for ConstDecimals<11>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<12>
impl Add<ConstDecimals<25>> for ConstDecimals<12>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<13>
impl Add<ConstDecimals<25>> for ConstDecimals<13>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<14>
impl Add<ConstDecimals<25>> for ConstDecimals<14>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<15>
impl Add<ConstDecimals<25>> for ConstDecimals<15>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<16>
impl Add<ConstDecimals<25>> for ConstDecimals<16>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<17>
impl Add<ConstDecimals<25>> for ConstDecimals<17>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<18>
impl Add<ConstDecimals<25>> for ConstDecimals<18>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<19>
impl Add<ConstDecimals<25>> for ConstDecimals<19>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<20>
impl Add<ConstDecimals<25>> for ConstDecimals<20>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<21>
impl Add<ConstDecimals<25>> for ConstDecimals<21>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<22>
impl Add<ConstDecimals<25>> for ConstDecimals<22>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<23>
impl Add<ConstDecimals<25>> for ConstDecimals<23>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<24>
impl Add<ConstDecimals<25>> for ConstDecimals<24>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<26>
impl Add<ConstDecimals<25>> for ConstDecimals<26>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<27>
impl Add<ConstDecimals<25>> for ConstDecimals<27>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<28>
impl Add<ConstDecimals<25>> for ConstDecimals<28>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<29>
impl Add<ConstDecimals<25>> for ConstDecimals<29>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<30>
impl Add<ConstDecimals<25>> for ConstDecimals<30>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<31>
impl Add<ConstDecimals<25>> for ConstDecimals<31>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<32>
impl Add<ConstDecimals<25>> for ConstDecimals<32>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<33>
impl Add<ConstDecimals<25>> for ConstDecimals<33>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<34>
impl Add<ConstDecimals<25>> for ConstDecimals<34>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<35>
impl Add<ConstDecimals<25>> for ConstDecimals<35>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<36>
impl Add<ConstDecimals<25>> for ConstDecimals<36>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<37>
impl Add<ConstDecimals<25>> for ConstDecimals<37>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<38>
impl Add<ConstDecimals<25>> for ConstDecimals<38>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<39>
impl Add<ConstDecimals<25>> for ConstDecimals<39>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<40>
impl Add<ConstDecimals<25>> for ConstDecimals<40>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<41>
impl Add<ConstDecimals<25>> for ConstDecimals<41>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<42>
impl Add<ConstDecimals<25>> for ConstDecimals<42>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<43>
impl Add<ConstDecimals<25>> for ConstDecimals<43>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<44>
impl Add<ConstDecimals<25>> for ConstDecimals<44>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<45>
impl Add<ConstDecimals<25>> for ConstDecimals<45>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<46>
impl Add<ConstDecimals<25>> for ConstDecimals<46>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<47>
impl Add<ConstDecimals<25>> for ConstDecimals<47>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<48>
impl Add<ConstDecimals<25>> for ConstDecimals<48>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<49>
impl Add<ConstDecimals<25>> for ConstDecimals<49>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<50>
impl Add<ConstDecimals<25>> for ConstDecimals<50>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<51>
impl Add<ConstDecimals<25>> for ConstDecimals<51>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<52>
impl Add<ConstDecimals<25>> for ConstDecimals<52>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<53>
impl Add<ConstDecimals<25>> for ConstDecimals<53>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<54>
impl Add<ConstDecimals<25>> for ConstDecimals<54>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<55>
impl Add<ConstDecimals<25>> for ConstDecimals<55>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<56>
impl Add<ConstDecimals<25>> for ConstDecimals<56>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<57>
impl Add<ConstDecimals<25>> for ConstDecimals<57>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<58>
impl Add<ConstDecimals<25>> for ConstDecimals<58>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<59>
impl Add<ConstDecimals<25>> for ConstDecimals<59>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<60>
impl Add<ConstDecimals<25>> for ConstDecimals<60>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<61>
impl Add<ConstDecimals<25>> for ConstDecimals<61>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<62>
impl Add<ConstDecimals<25>> for ConstDecimals<62>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<63>
impl Add<ConstDecimals<25>> for ConstDecimals<63>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<25>> for ConstDecimals<64>
impl Add<ConstDecimals<25>> for ConstDecimals<64>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<0>
impl Add<ConstDecimals<26>> for ConstDecimals<0>
type Output = ConstDecimals<26>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<1>
impl Add<ConstDecimals<26>> for ConstDecimals<1>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<2>
impl Add<ConstDecimals<26>> for ConstDecimals<2>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<3>
impl Add<ConstDecimals<26>> for ConstDecimals<3>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<4>
impl Add<ConstDecimals<26>> for ConstDecimals<4>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<5>
impl Add<ConstDecimals<26>> for ConstDecimals<5>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<6>
impl Add<ConstDecimals<26>> for ConstDecimals<6>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<7>
impl Add<ConstDecimals<26>> for ConstDecimals<7>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<8>
impl Add<ConstDecimals<26>> for ConstDecimals<8>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<9>
impl Add<ConstDecimals<26>> for ConstDecimals<9>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<10>
impl Add<ConstDecimals<26>> for ConstDecimals<10>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<11>
impl Add<ConstDecimals<26>> for ConstDecimals<11>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<12>
impl Add<ConstDecimals<26>> for ConstDecimals<12>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<13>
impl Add<ConstDecimals<26>> for ConstDecimals<13>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<14>
impl Add<ConstDecimals<26>> for ConstDecimals<14>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<15>
impl Add<ConstDecimals<26>> for ConstDecimals<15>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<16>
impl Add<ConstDecimals<26>> for ConstDecimals<16>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<17>
impl Add<ConstDecimals<26>> for ConstDecimals<17>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<18>
impl Add<ConstDecimals<26>> for ConstDecimals<18>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<19>
impl Add<ConstDecimals<26>> for ConstDecimals<19>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<20>
impl Add<ConstDecimals<26>> for ConstDecimals<20>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<21>
impl Add<ConstDecimals<26>> for ConstDecimals<21>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<22>
impl Add<ConstDecimals<26>> for ConstDecimals<22>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<23>
impl Add<ConstDecimals<26>> for ConstDecimals<23>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<24>
impl Add<ConstDecimals<26>> for ConstDecimals<24>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<25>
impl Add<ConstDecimals<26>> for ConstDecimals<25>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<27>
impl Add<ConstDecimals<26>> for ConstDecimals<27>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<28>
impl Add<ConstDecimals<26>> for ConstDecimals<28>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<29>
impl Add<ConstDecimals<26>> for ConstDecimals<29>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<30>
impl Add<ConstDecimals<26>> for ConstDecimals<30>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<31>
impl Add<ConstDecimals<26>> for ConstDecimals<31>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<32>
impl Add<ConstDecimals<26>> for ConstDecimals<32>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<33>
impl Add<ConstDecimals<26>> for ConstDecimals<33>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<34>
impl Add<ConstDecimals<26>> for ConstDecimals<34>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<35>
impl Add<ConstDecimals<26>> for ConstDecimals<35>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<36>
impl Add<ConstDecimals<26>> for ConstDecimals<36>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<37>
impl Add<ConstDecimals<26>> for ConstDecimals<37>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<38>
impl Add<ConstDecimals<26>> for ConstDecimals<38>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<39>
impl Add<ConstDecimals<26>> for ConstDecimals<39>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<40>
impl Add<ConstDecimals<26>> for ConstDecimals<40>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<41>
impl Add<ConstDecimals<26>> for ConstDecimals<41>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<42>
impl Add<ConstDecimals<26>> for ConstDecimals<42>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<43>
impl Add<ConstDecimals<26>> for ConstDecimals<43>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<44>
impl Add<ConstDecimals<26>> for ConstDecimals<44>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<45>
impl Add<ConstDecimals<26>> for ConstDecimals<45>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<46>
impl Add<ConstDecimals<26>> for ConstDecimals<46>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<47>
impl Add<ConstDecimals<26>> for ConstDecimals<47>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<48>
impl Add<ConstDecimals<26>> for ConstDecimals<48>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<49>
impl Add<ConstDecimals<26>> for ConstDecimals<49>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<50>
impl Add<ConstDecimals<26>> for ConstDecimals<50>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<51>
impl Add<ConstDecimals<26>> for ConstDecimals<51>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<52>
impl Add<ConstDecimals<26>> for ConstDecimals<52>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<53>
impl Add<ConstDecimals<26>> for ConstDecimals<53>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<54>
impl Add<ConstDecimals<26>> for ConstDecimals<54>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<55>
impl Add<ConstDecimals<26>> for ConstDecimals<55>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<56>
impl Add<ConstDecimals<26>> for ConstDecimals<56>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<57>
impl Add<ConstDecimals<26>> for ConstDecimals<57>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<58>
impl Add<ConstDecimals<26>> for ConstDecimals<58>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<59>
impl Add<ConstDecimals<26>> for ConstDecimals<59>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<60>
impl Add<ConstDecimals<26>> for ConstDecimals<60>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<61>
impl Add<ConstDecimals<26>> for ConstDecimals<61>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<62>
impl Add<ConstDecimals<26>> for ConstDecimals<62>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<63>
impl Add<ConstDecimals<26>> for ConstDecimals<63>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<26>> for ConstDecimals<64>
impl Add<ConstDecimals<26>> for ConstDecimals<64>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<0>
impl Add<ConstDecimals<27>> for ConstDecimals<0>
type Output = ConstDecimals<27>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<1>
impl Add<ConstDecimals<27>> for ConstDecimals<1>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<2>
impl Add<ConstDecimals<27>> for ConstDecimals<2>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<3>
impl Add<ConstDecimals<27>> for ConstDecimals<3>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<4>
impl Add<ConstDecimals<27>> for ConstDecimals<4>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<5>
impl Add<ConstDecimals<27>> for ConstDecimals<5>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<6>
impl Add<ConstDecimals<27>> for ConstDecimals<6>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<7>
impl Add<ConstDecimals<27>> for ConstDecimals<7>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<8>
impl Add<ConstDecimals<27>> for ConstDecimals<8>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<9>
impl Add<ConstDecimals<27>> for ConstDecimals<9>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<10>
impl Add<ConstDecimals<27>> for ConstDecimals<10>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<11>
impl Add<ConstDecimals<27>> for ConstDecimals<11>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<12>
impl Add<ConstDecimals<27>> for ConstDecimals<12>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<13>
impl Add<ConstDecimals<27>> for ConstDecimals<13>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<14>
impl Add<ConstDecimals<27>> for ConstDecimals<14>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<15>
impl Add<ConstDecimals<27>> for ConstDecimals<15>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<16>
impl Add<ConstDecimals<27>> for ConstDecimals<16>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<17>
impl Add<ConstDecimals<27>> for ConstDecimals<17>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<18>
impl Add<ConstDecimals<27>> for ConstDecimals<18>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<19>
impl Add<ConstDecimals<27>> for ConstDecimals<19>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<20>
impl Add<ConstDecimals<27>> for ConstDecimals<20>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<21>
impl Add<ConstDecimals<27>> for ConstDecimals<21>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<22>
impl Add<ConstDecimals<27>> for ConstDecimals<22>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<23>
impl Add<ConstDecimals<27>> for ConstDecimals<23>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<24>
impl Add<ConstDecimals<27>> for ConstDecimals<24>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<25>
impl Add<ConstDecimals<27>> for ConstDecimals<25>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<26>
impl Add<ConstDecimals<27>> for ConstDecimals<26>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<28>
impl Add<ConstDecimals<27>> for ConstDecimals<28>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<29>
impl Add<ConstDecimals<27>> for ConstDecimals<29>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<30>
impl Add<ConstDecimals<27>> for ConstDecimals<30>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<31>
impl Add<ConstDecimals<27>> for ConstDecimals<31>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<32>
impl Add<ConstDecimals<27>> for ConstDecimals<32>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<33>
impl Add<ConstDecimals<27>> for ConstDecimals<33>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<34>
impl Add<ConstDecimals<27>> for ConstDecimals<34>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<35>
impl Add<ConstDecimals<27>> for ConstDecimals<35>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<36>
impl Add<ConstDecimals<27>> for ConstDecimals<36>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<37>
impl Add<ConstDecimals<27>> for ConstDecimals<37>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<38>
impl Add<ConstDecimals<27>> for ConstDecimals<38>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<39>
impl Add<ConstDecimals<27>> for ConstDecimals<39>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<40>
impl Add<ConstDecimals<27>> for ConstDecimals<40>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<41>
impl Add<ConstDecimals<27>> for ConstDecimals<41>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<42>
impl Add<ConstDecimals<27>> for ConstDecimals<42>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<43>
impl Add<ConstDecimals<27>> for ConstDecimals<43>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<44>
impl Add<ConstDecimals<27>> for ConstDecimals<44>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<45>
impl Add<ConstDecimals<27>> for ConstDecimals<45>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<46>
impl Add<ConstDecimals<27>> for ConstDecimals<46>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<47>
impl Add<ConstDecimals<27>> for ConstDecimals<47>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<48>
impl Add<ConstDecimals<27>> for ConstDecimals<48>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<49>
impl Add<ConstDecimals<27>> for ConstDecimals<49>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<50>
impl Add<ConstDecimals<27>> for ConstDecimals<50>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<51>
impl Add<ConstDecimals<27>> for ConstDecimals<51>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<52>
impl Add<ConstDecimals<27>> for ConstDecimals<52>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<53>
impl Add<ConstDecimals<27>> for ConstDecimals<53>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<54>
impl Add<ConstDecimals<27>> for ConstDecimals<54>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<55>
impl Add<ConstDecimals<27>> for ConstDecimals<55>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<56>
impl Add<ConstDecimals<27>> for ConstDecimals<56>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<57>
impl Add<ConstDecimals<27>> for ConstDecimals<57>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<58>
impl Add<ConstDecimals<27>> for ConstDecimals<58>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<59>
impl Add<ConstDecimals<27>> for ConstDecimals<59>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<60>
impl Add<ConstDecimals<27>> for ConstDecimals<60>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<61>
impl Add<ConstDecimals<27>> for ConstDecimals<61>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<62>
impl Add<ConstDecimals<27>> for ConstDecimals<62>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<63>
impl Add<ConstDecimals<27>> for ConstDecimals<63>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<27>> for ConstDecimals<64>
impl Add<ConstDecimals<27>> for ConstDecimals<64>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<0>
impl Add<ConstDecimals<28>> for ConstDecimals<0>
type Output = ConstDecimals<28>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<1>
impl Add<ConstDecimals<28>> for ConstDecimals<1>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<2>
impl Add<ConstDecimals<28>> for ConstDecimals<2>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<3>
impl Add<ConstDecimals<28>> for ConstDecimals<3>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<4>
impl Add<ConstDecimals<28>> for ConstDecimals<4>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<5>
impl Add<ConstDecimals<28>> for ConstDecimals<5>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<6>
impl Add<ConstDecimals<28>> for ConstDecimals<6>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<7>
impl Add<ConstDecimals<28>> for ConstDecimals<7>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<8>
impl Add<ConstDecimals<28>> for ConstDecimals<8>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<9>
impl Add<ConstDecimals<28>> for ConstDecimals<9>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<10>
impl Add<ConstDecimals<28>> for ConstDecimals<10>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<11>
impl Add<ConstDecimals<28>> for ConstDecimals<11>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<12>
impl Add<ConstDecimals<28>> for ConstDecimals<12>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<13>
impl Add<ConstDecimals<28>> for ConstDecimals<13>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<14>
impl Add<ConstDecimals<28>> for ConstDecimals<14>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<15>
impl Add<ConstDecimals<28>> for ConstDecimals<15>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<16>
impl Add<ConstDecimals<28>> for ConstDecimals<16>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<17>
impl Add<ConstDecimals<28>> for ConstDecimals<17>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<18>
impl Add<ConstDecimals<28>> for ConstDecimals<18>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<19>
impl Add<ConstDecimals<28>> for ConstDecimals<19>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<20>
impl Add<ConstDecimals<28>> for ConstDecimals<20>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<21>
impl Add<ConstDecimals<28>> for ConstDecimals<21>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<22>
impl Add<ConstDecimals<28>> for ConstDecimals<22>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<23>
impl Add<ConstDecimals<28>> for ConstDecimals<23>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<24>
impl Add<ConstDecimals<28>> for ConstDecimals<24>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<25>
impl Add<ConstDecimals<28>> for ConstDecimals<25>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<26>
impl Add<ConstDecimals<28>> for ConstDecimals<26>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<27>
impl Add<ConstDecimals<28>> for ConstDecimals<27>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<29>
impl Add<ConstDecimals<28>> for ConstDecimals<29>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<30>
impl Add<ConstDecimals<28>> for ConstDecimals<30>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<31>
impl Add<ConstDecimals<28>> for ConstDecimals<31>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<32>
impl Add<ConstDecimals<28>> for ConstDecimals<32>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<33>
impl Add<ConstDecimals<28>> for ConstDecimals<33>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<34>
impl Add<ConstDecimals<28>> for ConstDecimals<34>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<35>
impl Add<ConstDecimals<28>> for ConstDecimals<35>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<36>
impl Add<ConstDecimals<28>> for ConstDecimals<36>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<37>
impl Add<ConstDecimals<28>> for ConstDecimals<37>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<38>
impl Add<ConstDecimals<28>> for ConstDecimals<38>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<39>
impl Add<ConstDecimals<28>> for ConstDecimals<39>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<40>
impl Add<ConstDecimals<28>> for ConstDecimals<40>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<41>
impl Add<ConstDecimals<28>> for ConstDecimals<41>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<42>
impl Add<ConstDecimals<28>> for ConstDecimals<42>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<43>
impl Add<ConstDecimals<28>> for ConstDecimals<43>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<44>
impl Add<ConstDecimals<28>> for ConstDecimals<44>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<45>
impl Add<ConstDecimals<28>> for ConstDecimals<45>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<46>
impl Add<ConstDecimals<28>> for ConstDecimals<46>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<47>
impl Add<ConstDecimals<28>> for ConstDecimals<47>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<48>
impl Add<ConstDecimals<28>> for ConstDecimals<48>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<49>
impl Add<ConstDecimals<28>> for ConstDecimals<49>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<50>
impl Add<ConstDecimals<28>> for ConstDecimals<50>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<51>
impl Add<ConstDecimals<28>> for ConstDecimals<51>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<52>
impl Add<ConstDecimals<28>> for ConstDecimals<52>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<53>
impl Add<ConstDecimals<28>> for ConstDecimals<53>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<54>
impl Add<ConstDecimals<28>> for ConstDecimals<54>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<55>
impl Add<ConstDecimals<28>> for ConstDecimals<55>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<56>
impl Add<ConstDecimals<28>> for ConstDecimals<56>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<57>
impl Add<ConstDecimals<28>> for ConstDecimals<57>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<58>
impl Add<ConstDecimals<28>> for ConstDecimals<58>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<59>
impl Add<ConstDecimals<28>> for ConstDecimals<59>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<60>
impl Add<ConstDecimals<28>> for ConstDecimals<60>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<61>
impl Add<ConstDecimals<28>> for ConstDecimals<61>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<62>
impl Add<ConstDecimals<28>> for ConstDecimals<62>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<63>
impl Add<ConstDecimals<28>> for ConstDecimals<63>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<28>> for ConstDecimals<64>
impl Add<ConstDecimals<28>> for ConstDecimals<64>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<0>
impl Add<ConstDecimals<29>> for ConstDecimals<0>
type Output = ConstDecimals<29>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<1>
impl Add<ConstDecimals<29>> for ConstDecimals<1>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<2>
impl Add<ConstDecimals<29>> for ConstDecimals<2>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<3>
impl Add<ConstDecimals<29>> for ConstDecimals<3>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<4>
impl Add<ConstDecimals<29>> for ConstDecimals<4>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<5>
impl Add<ConstDecimals<29>> for ConstDecimals<5>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<6>
impl Add<ConstDecimals<29>> for ConstDecimals<6>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<7>
impl Add<ConstDecimals<29>> for ConstDecimals<7>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<8>
impl Add<ConstDecimals<29>> for ConstDecimals<8>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<9>
impl Add<ConstDecimals<29>> for ConstDecimals<9>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<10>
impl Add<ConstDecimals<29>> for ConstDecimals<10>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<11>
impl Add<ConstDecimals<29>> for ConstDecimals<11>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<12>
impl Add<ConstDecimals<29>> for ConstDecimals<12>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<13>
impl Add<ConstDecimals<29>> for ConstDecimals<13>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<14>
impl Add<ConstDecimals<29>> for ConstDecimals<14>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<15>
impl Add<ConstDecimals<29>> for ConstDecimals<15>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<16>
impl Add<ConstDecimals<29>> for ConstDecimals<16>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<17>
impl Add<ConstDecimals<29>> for ConstDecimals<17>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<18>
impl Add<ConstDecimals<29>> for ConstDecimals<18>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<19>
impl Add<ConstDecimals<29>> for ConstDecimals<19>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<20>
impl Add<ConstDecimals<29>> for ConstDecimals<20>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<21>
impl Add<ConstDecimals<29>> for ConstDecimals<21>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<22>
impl Add<ConstDecimals<29>> for ConstDecimals<22>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<23>
impl Add<ConstDecimals<29>> for ConstDecimals<23>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<24>
impl Add<ConstDecimals<29>> for ConstDecimals<24>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<25>
impl Add<ConstDecimals<29>> for ConstDecimals<25>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<26>
impl Add<ConstDecimals<29>> for ConstDecimals<26>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<27>
impl Add<ConstDecimals<29>> for ConstDecimals<27>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<28>
impl Add<ConstDecimals<29>> for ConstDecimals<28>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<30>
impl Add<ConstDecimals<29>> for ConstDecimals<30>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<31>
impl Add<ConstDecimals<29>> for ConstDecimals<31>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<32>
impl Add<ConstDecimals<29>> for ConstDecimals<32>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<33>
impl Add<ConstDecimals<29>> for ConstDecimals<33>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<34>
impl Add<ConstDecimals<29>> for ConstDecimals<34>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<35>
impl Add<ConstDecimals<29>> for ConstDecimals<35>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<36>
impl Add<ConstDecimals<29>> for ConstDecimals<36>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<37>
impl Add<ConstDecimals<29>> for ConstDecimals<37>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<38>
impl Add<ConstDecimals<29>> for ConstDecimals<38>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<39>
impl Add<ConstDecimals<29>> for ConstDecimals<39>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<40>
impl Add<ConstDecimals<29>> for ConstDecimals<40>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<41>
impl Add<ConstDecimals<29>> for ConstDecimals<41>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<42>
impl Add<ConstDecimals<29>> for ConstDecimals<42>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<43>
impl Add<ConstDecimals<29>> for ConstDecimals<43>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<44>
impl Add<ConstDecimals<29>> for ConstDecimals<44>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<45>
impl Add<ConstDecimals<29>> for ConstDecimals<45>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<46>
impl Add<ConstDecimals<29>> for ConstDecimals<46>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<47>
impl Add<ConstDecimals<29>> for ConstDecimals<47>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<48>
impl Add<ConstDecimals<29>> for ConstDecimals<48>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<49>
impl Add<ConstDecimals<29>> for ConstDecimals<49>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<50>
impl Add<ConstDecimals<29>> for ConstDecimals<50>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<51>
impl Add<ConstDecimals<29>> for ConstDecimals<51>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<52>
impl Add<ConstDecimals<29>> for ConstDecimals<52>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<53>
impl Add<ConstDecimals<29>> for ConstDecimals<53>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<54>
impl Add<ConstDecimals<29>> for ConstDecimals<54>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<55>
impl Add<ConstDecimals<29>> for ConstDecimals<55>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<56>
impl Add<ConstDecimals<29>> for ConstDecimals<56>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<57>
impl Add<ConstDecimals<29>> for ConstDecimals<57>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<58>
impl Add<ConstDecimals<29>> for ConstDecimals<58>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<59>
impl Add<ConstDecimals<29>> for ConstDecimals<59>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<60>
impl Add<ConstDecimals<29>> for ConstDecimals<60>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<61>
impl Add<ConstDecimals<29>> for ConstDecimals<61>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<62>
impl Add<ConstDecimals<29>> for ConstDecimals<62>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<63>
impl Add<ConstDecimals<29>> for ConstDecimals<63>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<29>> for ConstDecimals<64>
impl Add<ConstDecimals<29>> for ConstDecimals<64>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<0>
impl Add<ConstDecimals<30>> for ConstDecimals<0>
type Output = ConstDecimals<30>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<1>
impl Add<ConstDecimals<30>> for ConstDecimals<1>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<2>
impl Add<ConstDecimals<30>> for ConstDecimals<2>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<3>
impl Add<ConstDecimals<30>> for ConstDecimals<3>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<4>
impl Add<ConstDecimals<30>> for ConstDecimals<4>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<5>
impl Add<ConstDecimals<30>> for ConstDecimals<5>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<6>
impl Add<ConstDecimals<30>> for ConstDecimals<6>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<7>
impl Add<ConstDecimals<30>> for ConstDecimals<7>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<8>
impl Add<ConstDecimals<30>> for ConstDecimals<8>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<9>
impl Add<ConstDecimals<30>> for ConstDecimals<9>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<10>
impl Add<ConstDecimals<30>> for ConstDecimals<10>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<11>
impl Add<ConstDecimals<30>> for ConstDecimals<11>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<12>
impl Add<ConstDecimals<30>> for ConstDecimals<12>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<13>
impl Add<ConstDecimals<30>> for ConstDecimals<13>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<14>
impl Add<ConstDecimals<30>> for ConstDecimals<14>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<15>
impl Add<ConstDecimals<30>> for ConstDecimals<15>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<16>
impl Add<ConstDecimals<30>> for ConstDecimals<16>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<17>
impl Add<ConstDecimals<30>> for ConstDecimals<17>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<18>
impl Add<ConstDecimals<30>> for ConstDecimals<18>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<19>
impl Add<ConstDecimals<30>> for ConstDecimals<19>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<20>
impl Add<ConstDecimals<30>> for ConstDecimals<20>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<21>
impl Add<ConstDecimals<30>> for ConstDecimals<21>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<22>
impl Add<ConstDecimals<30>> for ConstDecimals<22>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<23>
impl Add<ConstDecimals<30>> for ConstDecimals<23>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<24>
impl Add<ConstDecimals<30>> for ConstDecimals<24>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<25>
impl Add<ConstDecimals<30>> for ConstDecimals<25>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<26>
impl Add<ConstDecimals<30>> for ConstDecimals<26>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<27>
impl Add<ConstDecimals<30>> for ConstDecimals<27>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<28>
impl Add<ConstDecimals<30>> for ConstDecimals<28>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<29>
impl Add<ConstDecimals<30>> for ConstDecimals<29>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<31>
impl Add<ConstDecimals<30>> for ConstDecimals<31>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<32>
impl Add<ConstDecimals<30>> for ConstDecimals<32>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<33>
impl Add<ConstDecimals<30>> for ConstDecimals<33>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<34>
impl Add<ConstDecimals<30>> for ConstDecimals<34>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<35>
impl Add<ConstDecimals<30>> for ConstDecimals<35>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<36>
impl Add<ConstDecimals<30>> for ConstDecimals<36>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<37>
impl Add<ConstDecimals<30>> for ConstDecimals<37>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<38>
impl Add<ConstDecimals<30>> for ConstDecimals<38>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<39>
impl Add<ConstDecimals<30>> for ConstDecimals<39>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<40>
impl Add<ConstDecimals<30>> for ConstDecimals<40>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<41>
impl Add<ConstDecimals<30>> for ConstDecimals<41>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<42>
impl Add<ConstDecimals<30>> for ConstDecimals<42>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<43>
impl Add<ConstDecimals<30>> for ConstDecimals<43>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<44>
impl Add<ConstDecimals<30>> for ConstDecimals<44>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<45>
impl Add<ConstDecimals<30>> for ConstDecimals<45>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<46>
impl Add<ConstDecimals<30>> for ConstDecimals<46>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<47>
impl Add<ConstDecimals<30>> for ConstDecimals<47>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<48>
impl Add<ConstDecimals<30>> for ConstDecimals<48>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<49>
impl Add<ConstDecimals<30>> for ConstDecimals<49>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<50>
impl Add<ConstDecimals<30>> for ConstDecimals<50>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<51>
impl Add<ConstDecimals<30>> for ConstDecimals<51>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<52>
impl Add<ConstDecimals<30>> for ConstDecimals<52>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<53>
impl Add<ConstDecimals<30>> for ConstDecimals<53>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<54>
impl Add<ConstDecimals<30>> for ConstDecimals<54>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<55>
impl Add<ConstDecimals<30>> for ConstDecimals<55>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<56>
impl Add<ConstDecimals<30>> for ConstDecimals<56>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<57>
impl Add<ConstDecimals<30>> for ConstDecimals<57>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<58>
impl Add<ConstDecimals<30>> for ConstDecimals<58>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<59>
impl Add<ConstDecimals<30>> for ConstDecimals<59>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<60>
impl Add<ConstDecimals<30>> for ConstDecimals<60>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<61>
impl Add<ConstDecimals<30>> for ConstDecimals<61>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<62>
impl Add<ConstDecimals<30>> for ConstDecimals<62>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<63>
impl Add<ConstDecimals<30>> for ConstDecimals<63>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<30>> for ConstDecimals<64>
impl Add<ConstDecimals<30>> for ConstDecimals<64>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<0>
impl Add<ConstDecimals<31>> for ConstDecimals<0>
type Output = ConstDecimals<31>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<1>
impl Add<ConstDecimals<31>> for ConstDecimals<1>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<2>
impl Add<ConstDecimals<31>> for ConstDecimals<2>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<3>
impl Add<ConstDecimals<31>> for ConstDecimals<3>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<4>
impl Add<ConstDecimals<31>> for ConstDecimals<4>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<5>
impl Add<ConstDecimals<31>> for ConstDecimals<5>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<6>
impl Add<ConstDecimals<31>> for ConstDecimals<6>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<7>
impl Add<ConstDecimals<31>> for ConstDecimals<7>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<8>
impl Add<ConstDecimals<31>> for ConstDecimals<8>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<9>
impl Add<ConstDecimals<31>> for ConstDecimals<9>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<10>
impl Add<ConstDecimals<31>> for ConstDecimals<10>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<11>
impl Add<ConstDecimals<31>> for ConstDecimals<11>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<12>
impl Add<ConstDecimals<31>> for ConstDecimals<12>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<13>
impl Add<ConstDecimals<31>> for ConstDecimals<13>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<14>
impl Add<ConstDecimals<31>> for ConstDecimals<14>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<15>
impl Add<ConstDecimals<31>> for ConstDecimals<15>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<16>
impl Add<ConstDecimals<31>> for ConstDecimals<16>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<17>
impl Add<ConstDecimals<31>> for ConstDecimals<17>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<18>
impl Add<ConstDecimals<31>> for ConstDecimals<18>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<19>
impl Add<ConstDecimals<31>> for ConstDecimals<19>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<20>
impl Add<ConstDecimals<31>> for ConstDecimals<20>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<21>
impl Add<ConstDecimals<31>> for ConstDecimals<21>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<22>
impl Add<ConstDecimals<31>> for ConstDecimals<22>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<23>
impl Add<ConstDecimals<31>> for ConstDecimals<23>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<24>
impl Add<ConstDecimals<31>> for ConstDecimals<24>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<25>
impl Add<ConstDecimals<31>> for ConstDecimals<25>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<26>
impl Add<ConstDecimals<31>> for ConstDecimals<26>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<27>
impl Add<ConstDecimals<31>> for ConstDecimals<27>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<28>
impl Add<ConstDecimals<31>> for ConstDecimals<28>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<29>
impl Add<ConstDecimals<31>> for ConstDecimals<29>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<30>
impl Add<ConstDecimals<31>> for ConstDecimals<30>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<32>
impl Add<ConstDecimals<31>> for ConstDecimals<32>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<33>
impl Add<ConstDecimals<31>> for ConstDecimals<33>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<34>
impl Add<ConstDecimals<31>> for ConstDecimals<34>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<35>
impl Add<ConstDecimals<31>> for ConstDecimals<35>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<36>
impl Add<ConstDecimals<31>> for ConstDecimals<36>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<37>
impl Add<ConstDecimals<31>> for ConstDecimals<37>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<38>
impl Add<ConstDecimals<31>> for ConstDecimals<38>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<39>
impl Add<ConstDecimals<31>> for ConstDecimals<39>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<40>
impl Add<ConstDecimals<31>> for ConstDecimals<40>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<41>
impl Add<ConstDecimals<31>> for ConstDecimals<41>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<42>
impl Add<ConstDecimals<31>> for ConstDecimals<42>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<43>
impl Add<ConstDecimals<31>> for ConstDecimals<43>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<44>
impl Add<ConstDecimals<31>> for ConstDecimals<44>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<45>
impl Add<ConstDecimals<31>> for ConstDecimals<45>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<46>
impl Add<ConstDecimals<31>> for ConstDecimals<46>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<47>
impl Add<ConstDecimals<31>> for ConstDecimals<47>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<48>
impl Add<ConstDecimals<31>> for ConstDecimals<48>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<49>
impl Add<ConstDecimals<31>> for ConstDecimals<49>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<50>
impl Add<ConstDecimals<31>> for ConstDecimals<50>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<51>
impl Add<ConstDecimals<31>> for ConstDecimals<51>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<52>
impl Add<ConstDecimals<31>> for ConstDecimals<52>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<53>
impl Add<ConstDecimals<31>> for ConstDecimals<53>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<54>
impl Add<ConstDecimals<31>> for ConstDecimals<54>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<55>
impl Add<ConstDecimals<31>> for ConstDecimals<55>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<56>
impl Add<ConstDecimals<31>> for ConstDecimals<56>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<57>
impl Add<ConstDecimals<31>> for ConstDecimals<57>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<58>
impl Add<ConstDecimals<31>> for ConstDecimals<58>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<59>
impl Add<ConstDecimals<31>> for ConstDecimals<59>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<60>
impl Add<ConstDecimals<31>> for ConstDecimals<60>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<61>
impl Add<ConstDecimals<31>> for ConstDecimals<61>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<62>
impl Add<ConstDecimals<31>> for ConstDecimals<62>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<63>
impl Add<ConstDecimals<31>> for ConstDecimals<63>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<31>> for ConstDecimals<64>
impl Add<ConstDecimals<31>> for ConstDecimals<64>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<0>
impl Add<ConstDecimals<32>> for ConstDecimals<0>
type Output = ConstDecimals<32>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<1>
impl Add<ConstDecimals<32>> for ConstDecimals<1>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<2>
impl Add<ConstDecimals<32>> for ConstDecimals<2>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<3>
impl Add<ConstDecimals<32>> for ConstDecimals<3>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<4>
impl Add<ConstDecimals<32>> for ConstDecimals<4>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<5>
impl Add<ConstDecimals<32>> for ConstDecimals<5>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<6>
impl Add<ConstDecimals<32>> for ConstDecimals<6>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<7>
impl Add<ConstDecimals<32>> for ConstDecimals<7>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<8>
impl Add<ConstDecimals<32>> for ConstDecimals<8>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<9>
impl Add<ConstDecimals<32>> for ConstDecimals<9>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<10>
impl Add<ConstDecimals<32>> for ConstDecimals<10>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<11>
impl Add<ConstDecimals<32>> for ConstDecimals<11>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<12>
impl Add<ConstDecimals<32>> for ConstDecimals<12>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<13>
impl Add<ConstDecimals<32>> for ConstDecimals<13>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<14>
impl Add<ConstDecimals<32>> for ConstDecimals<14>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<15>
impl Add<ConstDecimals<32>> for ConstDecimals<15>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<16>
impl Add<ConstDecimals<32>> for ConstDecimals<16>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<17>
impl Add<ConstDecimals<32>> for ConstDecimals<17>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<18>
impl Add<ConstDecimals<32>> for ConstDecimals<18>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<19>
impl Add<ConstDecimals<32>> for ConstDecimals<19>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<20>
impl Add<ConstDecimals<32>> for ConstDecimals<20>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<21>
impl Add<ConstDecimals<32>> for ConstDecimals<21>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<22>
impl Add<ConstDecimals<32>> for ConstDecimals<22>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<23>
impl Add<ConstDecimals<32>> for ConstDecimals<23>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<24>
impl Add<ConstDecimals<32>> for ConstDecimals<24>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<25>
impl Add<ConstDecimals<32>> for ConstDecimals<25>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<26>
impl Add<ConstDecimals<32>> for ConstDecimals<26>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<27>
impl Add<ConstDecimals<32>> for ConstDecimals<27>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<28>
impl Add<ConstDecimals<32>> for ConstDecimals<28>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<29>
impl Add<ConstDecimals<32>> for ConstDecimals<29>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<30>
impl Add<ConstDecimals<32>> for ConstDecimals<30>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<31>
impl Add<ConstDecimals<32>> for ConstDecimals<31>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<33>
impl Add<ConstDecimals<32>> for ConstDecimals<33>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<34>
impl Add<ConstDecimals<32>> for ConstDecimals<34>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<35>
impl Add<ConstDecimals<32>> for ConstDecimals<35>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<36>
impl Add<ConstDecimals<32>> for ConstDecimals<36>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<37>
impl Add<ConstDecimals<32>> for ConstDecimals<37>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<38>
impl Add<ConstDecimals<32>> for ConstDecimals<38>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<39>
impl Add<ConstDecimals<32>> for ConstDecimals<39>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<40>
impl Add<ConstDecimals<32>> for ConstDecimals<40>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<41>
impl Add<ConstDecimals<32>> for ConstDecimals<41>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<42>
impl Add<ConstDecimals<32>> for ConstDecimals<42>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<43>
impl Add<ConstDecimals<32>> for ConstDecimals<43>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<44>
impl Add<ConstDecimals<32>> for ConstDecimals<44>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<45>
impl Add<ConstDecimals<32>> for ConstDecimals<45>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<46>
impl Add<ConstDecimals<32>> for ConstDecimals<46>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<47>
impl Add<ConstDecimals<32>> for ConstDecimals<47>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<48>
impl Add<ConstDecimals<32>> for ConstDecimals<48>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<49>
impl Add<ConstDecimals<32>> for ConstDecimals<49>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<50>
impl Add<ConstDecimals<32>> for ConstDecimals<50>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<51>
impl Add<ConstDecimals<32>> for ConstDecimals<51>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<52>
impl Add<ConstDecimals<32>> for ConstDecimals<52>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<53>
impl Add<ConstDecimals<32>> for ConstDecimals<53>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<54>
impl Add<ConstDecimals<32>> for ConstDecimals<54>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<55>
impl Add<ConstDecimals<32>> for ConstDecimals<55>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<56>
impl Add<ConstDecimals<32>> for ConstDecimals<56>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<57>
impl Add<ConstDecimals<32>> for ConstDecimals<57>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<58>
impl Add<ConstDecimals<32>> for ConstDecimals<58>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<59>
impl Add<ConstDecimals<32>> for ConstDecimals<59>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<60>
impl Add<ConstDecimals<32>> for ConstDecimals<60>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<61>
impl Add<ConstDecimals<32>> for ConstDecimals<61>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<62>
impl Add<ConstDecimals<32>> for ConstDecimals<62>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<63>
impl Add<ConstDecimals<32>> for ConstDecimals<63>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<32>> for ConstDecimals<64>
impl Add<ConstDecimals<32>> for ConstDecimals<64>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<0>
impl Add<ConstDecimals<33>> for ConstDecimals<0>
type Output = ConstDecimals<33>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<1>
impl Add<ConstDecimals<33>> for ConstDecimals<1>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<2>
impl Add<ConstDecimals<33>> for ConstDecimals<2>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<3>
impl Add<ConstDecimals<33>> for ConstDecimals<3>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<4>
impl Add<ConstDecimals<33>> for ConstDecimals<4>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<5>
impl Add<ConstDecimals<33>> for ConstDecimals<5>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<6>
impl Add<ConstDecimals<33>> for ConstDecimals<6>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<7>
impl Add<ConstDecimals<33>> for ConstDecimals<7>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<8>
impl Add<ConstDecimals<33>> for ConstDecimals<8>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<9>
impl Add<ConstDecimals<33>> for ConstDecimals<9>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<10>
impl Add<ConstDecimals<33>> for ConstDecimals<10>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<11>
impl Add<ConstDecimals<33>> for ConstDecimals<11>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<12>
impl Add<ConstDecimals<33>> for ConstDecimals<12>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<13>
impl Add<ConstDecimals<33>> for ConstDecimals<13>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<14>
impl Add<ConstDecimals<33>> for ConstDecimals<14>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<15>
impl Add<ConstDecimals<33>> for ConstDecimals<15>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<16>
impl Add<ConstDecimals<33>> for ConstDecimals<16>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<17>
impl Add<ConstDecimals<33>> for ConstDecimals<17>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<18>
impl Add<ConstDecimals<33>> for ConstDecimals<18>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<19>
impl Add<ConstDecimals<33>> for ConstDecimals<19>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<20>
impl Add<ConstDecimals<33>> for ConstDecimals<20>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<21>
impl Add<ConstDecimals<33>> for ConstDecimals<21>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<22>
impl Add<ConstDecimals<33>> for ConstDecimals<22>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<23>
impl Add<ConstDecimals<33>> for ConstDecimals<23>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<24>
impl Add<ConstDecimals<33>> for ConstDecimals<24>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<25>
impl Add<ConstDecimals<33>> for ConstDecimals<25>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<26>
impl Add<ConstDecimals<33>> for ConstDecimals<26>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<27>
impl Add<ConstDecimals<33>> for ConstDecimals<27>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<28>
impl Add<ConstDecimals<33>> for ConstDecimals<28>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<29>
impl Add<ConstDecimals<33>> for ConstDecimals<29>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<30>
impl Add<ConstDecimals<33>> for ConstDecimals<30>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<31>
impl Add<ConstDecimals<33>> for ConstDecimals<31>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<32>
impl Add<ConstDecimals<33>> for ConstDecimals<32>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<34>
impl Add<ConstDecimals<33>> for ConstDecimals<34>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<35>
impl Add<ConstDecimals<33>> for ConstDecimals<35>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<36>
impl Add<ConstDecimals<33>> for ConstDecimals<36>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<37>
impl Add<ConstDecimals<33>> for ConstDecimals<37>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<38>
impl Add<ConstDecimals<33>> for ConstDecimals<38>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<39>
impl Add<ConstDecimals<33>> for ConstDecimals<39>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<40>
impl Add<ConstDecimals<33>> for ConstDecimals<40>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<41>
impl Add<ConstDecimals<33>> for ConstDecimals<41>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<42>
impl Add<ConstDecimals<33>> for ConstDecimals<42>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<43>
impl Add<ConstDecimals<33>> for ConstDecimals<43>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<44>
impl Add<ConstDecimals<33>> for ConstDecimals<44>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<45>
impl Add<ConstDecimals<33>> for ConstDecimals<45>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<46>
impl Add<ConstDecimals<33>> for ConstDecimals<46>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<47>
impl Add<ConstDecimals<33>> for ConstDecimals<47>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<48>
impl Add<ConstDecimals<33>> for ConstDecimals<48>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<49>
impl Add<ConstDecimals<33>> for ConstDecimals<49>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<50>
impl Add<ConstDecimals<33>> for ConstDecimals<50>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<51>
impl Add<ConstDecimals<33>> for ConstDecimals<51>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<52>
impl Add<ConstDecimals<33>> for ConstDecimals<52>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<53>
impl Add<ConstDecimals<33>> for ConstDecimals<53>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<54>
impl Add<ConstDecimals<33>> for ConstDecimals<54>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<55>
impl Add<ConstDecimals<33>> for ConstDecimals<55>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<56>
impl Add<ConstDecimals<33>> for ConstDecimals<56>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<57>
impl Add<ConstDecimals<33>> for ConstDecimals<57>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<58>
impl Add<ConstDecimals<33>> for ConstDecimals<58>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<59>
impl Add<ConstDecimals<33>> for ConstDecimals<59>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<60>
impl Add<ConstDecimals<33>> for ConstDecimals<60>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<61>
impl Add<ConstDecimals<33>> for ConstDecimals<61>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<62>
impl Add<ConstDecimals<33>> for ConstDecimals<62>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<63>
impl Add<ConstDecimals<33>> for ConstDecimals<63>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<33>> for ConstDecimals<64>
impl Add<ConstDecimals<33>> for ConstDecimals<64>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<0>
impl Add<ConstDecimals<34>> for ConstDecimals<0>
type Output = ConstDecimals<34>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<1>
impl Add<ConstDecimals<34>> for ConstDecimals<1>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<2>
impl Add<ConstDecimals<34>> for ConstDecimals<2>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<3>
impl Add<ConstDecimals<34>> for ConstDecimals<3>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<4>
impl Add<ConstDecimals<34>> for ConstDecimals<4>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<5>
impl Add<ConstDecimals<34>> for ConstDecimals<5>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<6>
impl Add<ConstDecimals<34>> for ConstDecimals<6>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<7>
impl Add<ConstDecimals<34>> for ConstDecimals<7>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<8>
impl Add<ConstDecimals<34>> for ConstDecimals<8>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<9>
impl Add<ConstDecimals<34>> for ConstDecimals<9>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<10>
impl Add<ConstDecimals<34>> for ConstDecimals<10>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<11>
impl Add<ConstDecimals<34>> for ConstDecimals<11>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<12>
impl Add<ConstDecimals<34>> for ConstDecimals<12>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<13>
impl Add<ConstDecimals<34>> for ConstDecimals<13>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<14>
impl Add<ConstDecimals<34>> for ConstDecimals<14>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<15>
impl Add<ConstDecimals<34>> for ConstDecimals<15>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<16>
impl Add<ConstDecimals<34>> for ConstDecimals<16>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<17>
impl Add<ConstDecimals<34>> for ConstDecimals<17>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<18>
impl Add<ConstDecimals<34>> for ConstDecimals<18>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<19>
impl Add<ConstDecimals<34>> for ConstDecimals<19>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<20>
impl Add<ConstDecimals<34>> for ConstDecimals<20>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<21>
impl Add<ConstDecimals<34>> for ConstDecimals<21>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<22>
impl Add<ConstDecimals<34>> for ConstDecimals<22>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<23>
impl Add<ConstDecimals<34>> for ConstDecimals<23>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<24>
impl Add<ConstDecimals<34>> for ConstDecimals<24>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<25>
impl Add<ConstDecimals<34>> for ConstDecimals<25>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<26>
impl Add<ConstDecimals<34>> for ConstDecimals<26>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<27>
impl Add<ConstDecimals<34>> for ConstDecimals<27>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<28>
impl Add<ConstDecimals<34>> for ConstDecimals<28>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<29>
impl Add<ConstDecimals<34>> for ConstDecimals<29>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<30>
impl Add<ConstDecimals<34>> for ConstDecimals<30>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<31>
impl Add<ConstDecimals<34>> for ConstDecimals<31>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<32>
impl Add<ConstDecimals<34>> for ConstDecimals<32>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<33>
impl Add<ConstDecimals<34>> for ConstDecimals<33>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<35>
impl Add<ConstDecimals<34>> for ConstDecimals<35>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<36>
impl Add<ConstDecimals<34>> for ConstDecimals<36>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<37>
impl Add<ConstDecimals<34>> for ConstDecimals<37>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<38>
impl Add<ConstDecimals<34>> for ConstDecimals<38>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<39>
impl Add<ConstDecimals<34>> for ConstDecimals<39>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<40>
impl Add<ConstDecimals<34>> for ConstDecimals<40>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<41>
impl Add<ConstDecimals<34>> for ConstDecimals<41>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<42>
impl Add<ConstDecimals<34>> for ConstDecimals<42>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<43>
impl Add<ConstDecimals<34>> for ConstDecimals<43>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<44>
impl Add<ConstDecimals<34>> for ConstDecimals<44>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<45>
impl Add<ConstDecimals<34>> for ConstDecimals<45>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<46>
impl Add<ConstDecimals<34>> for ConstDecimals<46>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<47>
impl Add<ConstDecimals<34>> for ConstDecimals<47>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<48>
impl Add<ConstDecimals<34>> for ConstDecimals<48>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<49>
impl Add<ConstDecimals<34>> for ConstDecimals<49>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<50>
impl Add<ConstDecimals<34>> for ConstDecimals<50>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<51>
impl Add<ConstDecimals<34>> for ConstDecimals<51>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<52>
impl Add<ConstDecimals<34>> for ConstDecimals<52>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<53>
impl Add<ConstDecimals<34>> for ConstDecimals<53>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<54>
impl Add<ConstDecimals<34>> for ConstDecimals<54>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<55>
impl Add<ConstDecimals<34>> for ConstDecimals<55>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<56>
impl Add<ConstDecimals<34>> for ConstDecimals<56>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<57>
impl Add<ConstDecimals<34>> for ConstDecimals<57>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<58>
impl Add<ConstDecimals<34>> for ConstDecimals<58>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<59>
impl Add<ConstDecimals<34>> for ConstDecimals<59>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<60>
impl Add<ConstDecimals<34>> for ConstDecimals<60>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<61>
impl Add<ConstDecimals<34>> for ConstDecimals<61>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<62>
impl Add<ConstDecimals<34>> for ConstDecimals<62>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<63>
impl Add<ConstDecimals<34>> for ConstDecimals<63>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<34>> for ConstDecimals<64>
impl Add<ConstDecimals<34>> for ConstDecimals<64>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<0>
impl Add<ConstDecimals<35>> for ConstDecimals<0>
type Output = ConstDecimals<35>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<1>
impl Add<ConstDecimals<35>> for ConstDecimals<1>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<2>
impl Add<ConstDecimals<35>> for ConstDecimals<2>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<3>
impl Add<ConstDecimals<35>> for ConstDecimals<3>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<4>
impl Add<ConstDecimals<35>> for ConstDecimals<4>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<5>
impl Add<ConstDecimals<35>> for ConstDecimals<5>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<6>
impl Add<ConstDecimals<35>> for ConstDecimals<6>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<7>
impl Add<ConstDecimals<35>> for ConstDecimals<7>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<8>
impl Add<ConstDecimals<35>> for ConstDecimals<8>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<9>
impl Add<ConstDecimals<35>> for ConstDecimals<9>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<10>
impl Add<ConstDecimals<35>> for ConstDecimals<10>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<11>
impl Add<ConstDecimals<35>> for ConstDecimals<11>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<12>
impl Add<ConstDecimals<35>> for ConstDecimals<12>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<13>
impl Add<ConstDecimals<35>> for ConstDecimals<13>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<14>
impl Add<ConstDecimals<35>> for ConstDecimals<14>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<15>
impl Add<ConstDecimals<35>> for ConstDecimals<15>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<16>
impl Add<ConstDecimals<35>> for ConstDecimals<16>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<17>
impl Add<ConstDecimals<35>> for ConstDecimals<17>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<18>
impl Add<ConstDecimals<35>> for ConstDecimals<18>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<19>
impl Add<ConstDecimals<35>> for ConstDecimals<19>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<20>
impl Add<ConstDecimals<35>> for ConstDecimals<20>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<21>
impl Add<ConstDecimals<35>> for ConstDecimals<21>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<22>
impl Add<ConstDecimals<35>> for ConstDecimals<22>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<23>
impl Add<ConstDecimals<35>> for ConstDecimals<23>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<24>
impl Add<ConstDecimals<35>> for ConstDecimals<24>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<25>
impl Add<ConstDecimals<35>> for ConstDecimals<25>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<26>
impl Add<ConstDecimals<35>> for ConstDecimals<26>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<27>
impl Add<ConstDecimals<35>> for ConstDecimals<27>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<28>
impl Add<ConstDecimals<35>> for ConstDecimals<28>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<29>
impl Add<ConstDecimals<35>> for ConstDecimals<29>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<30>
impl Add<ConstDecimals<35>> for ConstDecimals<30>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<31>
impl Add<ConstDecimals<35>> for ConstDecimals<31>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<32>
impl Add<ConstDecimals<35>> for ConstDecimals<32>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<33>
impl Add<ConstDecimals<35>> for ConstDecimals<33>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<34>
impl Add<ConstDecimals<35>> for ConstDecimals<34>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<36>
impl Add<ConstDecimals<35>> for ConstDecimals<36>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<37>
impl Add<ConstDecimals<35>> for ConstDecimals<37>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<38>
impl Add<ConstDecimals<35>> for ConstDecimals<38>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<39>
impl Add<ConstDecimals<35>> for ConstDecimals<39>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<40>
impl Add<ConstDecimals<35>> for ConstDecimals<40>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<41>
impl Add<ConstDecimals<35>> for ConstDecimals<41>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<42>
impl Add<ConstDecimals<35>> for ConstDecimals<42>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<43>
impl Add<ConstDecimals<35>> for ConstDecimals<43>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<44>
impl Add<ConstDecimals<35>> for ConstDecimals<44>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<45>
impl Add<ConstDecimals<35>> for ConstDecimals<45>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<46>
impl Add<ConstDecimals<35>> for ConstDecimals<46>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<47>
impl Add<ConstDecimals<35>> for ConstDecimals<47>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<48>
impl Add<ConstDecimals<35>> for ConstDecimals<48>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<49>
impl Add<ConstDecimals<35>> for ConstDecimals<49>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<50>
impl Add<ConstDecimals<35>> for ConstDecimals<50>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<51>
impl Add<ConstDecimals<35>> for ConstDecimals<51>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<52>
impl Add<ConstDecimals<35>> for ConstDecimals<52>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<53>
impl Add<ConstDecimals<35>> for ConstDecimals<53>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<54>
impl Add<ConstDecimals<35>> for ConstDecimals<54>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<55>
impl Add<ConstDecimals<35>> for ConstDecimals<55>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<56>
impl Add<ConstDecimals<35>> for ConstDecimals<56>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<57>
impl Add<ConstDecimals<35>> for ConstDecimals<57>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<58>
impl Add<ConstDecimals<35>> for ConstDecimals<58>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<59>
impl Add<ConstDecimals<35>> for ConstDecimals<59>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<60>
impl Add<ConstDecimals<35>> for ConstDecimals<60>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<61>
impl Add<ConstDecimals<35>> for ConstDecimals<61>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<62>
impl Add<ConstDecimals<35>> for ConstDecimals<62>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<63>
impl Add<ConstDecimals<35>> for ConstDecimals<63>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<35>> for ConstDecimals<64>
impl Add<ConstDecimals<35>> for ConstDecimals<64>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<0>
impl Add<ConstDecimals<36>> for ConstDecimals<0>
type Output = ConstDecimals<36>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<1>
impl Add<ConstDecimals<36>> for ConstDecimals<1>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<2>
impl Add<ConstDecimals<36>> for ConstDecimals<2>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<3>
impl Add<ConstDecimals<36>> for ConstDecimals<3>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<4>
impl Add<ConstDecimals<36>> for ConstDecimals<4>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<5>
impl Add<ConstDecimals<36>> for ConstDecimals<5>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<6>
impl Add<ConstDecimals<36>> for ConstDecimals<6>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<7>
impl Add<ConstDecimals<36>> for ConstDecimals<7>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<8>
impl Add<ConstDecimals<36>> for ConstDecimals<8>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<9>
impl Add<ConstDecimals<36>> for ConstDecimals<9>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<10>
impl Add<ConstDecimals<36>> for ConstDecimals<10>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<11>
impl Add<ConstDecimals<36>> for ConstDecimals<11>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<12>
impl Add<ConstDecimals<36>> for ConstDecimals<12>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<13>
impl Add<ConstDecimals<36>> for ConstDecimals<13>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<14>
impl Add<ConstDecimals<36>> for ConstDecimals<14>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<15>
impl Add<ConstDecimals<36>> for ConstDecimals<15>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<16>
impl Add<ConstDecimals<36>> for ConstDecimals<16>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<17>
impl Add<ConstDecimals<36>> for ConstDecimals<17>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<18>
impl Add<ConstDecimals<36>> for ConstDecimals<18>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<19>
impl Add<ConstDecimals<36>> for ConstDecimals<19>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<20>
impl Add<ConstDecimals<36>> for ConstDecimals<20>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<21>
impl Add<ConstDecimals<36>> for ConstDecimals<21>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<22>
impl Add<ConstDecimals<36>> for ConstDecimals<22>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<23>
impl Add<ConstDecimals<36>> for ConstDecimals<23>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<24>
impl Add<ConstDecimals<36>> for ConstDecimals<24>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<25>
impl Add<ConstDecimals<36>> for ConstDecimals<25>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<26>
impl Add<ConstDecimals<36>> for ConstDecimals<26>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<27>
impl Add<ConstDecimals<36>> for ConstDecimals<27>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<28>
impl Add<ConstDecimals<36>> for ConstDecimals<28>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<29>
impl Add<ConstDecimals<36>> for ConstDecimals<29>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<30>
impl Add<ConstDecimals<36>> for ConstDecimals<30>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<31>
impl Add<ConstDecimals<36>> for ConstDecimals<31>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<32>
impl Add<ConstDecimals<36>> for ConstDecimals<32>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<33>
impl Add<ConstDecimals<36>> for ConstDecimals<33>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<34>
impl Add<ConstDecimals<36>> for ConstDecimals<34>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<35>
impl Add<ConstDecimals<36>> for ConstDecimals<35>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<37>
impl Add<ConstDecimals<36>> for ConstDecimals<37>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<38>
impl Add<ConstDecimals<36>> for ConstDecimals<38>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<39>
impl Add<ConstDecimals<36>> for ConstDecimals<39>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<40>
impl Add<ConstDecimals<36>> for ConstDecimals<40>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<41>
impl Add<ConstDecimals<36>> for ConstDecimals<41>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<42>
impl Add<ConstDecimals<36>> for ConstDecimals<42>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<43>
impl Add<ConstDecimals<36>> for ConstDecimals<43>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<44>
impl Add<ConstDecimals<36>> for ConstDecimals<44>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<45>
impl Add<ConstDecimals<36>> for ConstDecimals<45>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<46>
impl Add<ConstDecimals<36>> for ConstDecimals<46>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<47>
impl Add<ConstDecimals<36>> for ConstDecimals<47>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<48>
impl Add<ConstDecimals<36>> for ConstDecimals<48>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<49>
impl Add<ConstDecimals<36>> for ConstDecimals<49>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<50>
impl Add<ConstDecimals<36>> for ConstDecimals<50>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<51>
impl Add<ConstDecimals<36>> for ConstDecimals<51>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<52>
impl Add<ConstDecimals<36>> for ConstDecimals<52>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<53>
impl Add<ConstDecimals<36>> for ConstDecimals<53>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<54>
impl Add<ConstDecimals<36>> for ConstDecimals<54>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<55>
impl Add<ConstDecimals<36>> for ConstDecimals<55>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<56>
impl Add<ConstDecimals<36>> for ConstDecimals<56>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<57>
impl Add<ConstDecimals<36>> for ConstDecimals<57>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<58>
impl Add<ConstDecimals<36>> for ConstDecimals<58>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<59>
impl Add<ConstDecimals<36>> for ConstDecimals<59>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<60>
impl Add<ConstDecimals<36>> for ConstDecimals<60>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<61>
impl Add<ConstDecimals<36>> for ConstDecimals<61>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<62>
impl Add<ConstDecimals<36>> for ConstDecimals<62>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<63>
impl Add<ConstDecimals<36>> for ConstDecimals<63>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<36>> for ConstDecimals<64>
impl Add<ConstDecimals<36>> for ConstDecimals<64>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<0>
impl Add<ConstDecimals<37>> for ConstDecimals<0>
type Output = ConstDecimals<37>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<1>
impl Add<ConstDecimals<37>> for ConstDecimals<1>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<2>
impl Add<ConstDecimals<37>> for ConstDecimals<2>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<3>
impl Add<ConstDecimals<37>> for ConstDecimals<3>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<4>
impl Add<ConstDecimals<37>> for ConstDecimals<4>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<5>
impl Add<ConstDecimals<37>> for ConstDecimals<5>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<6>
impl Add<ConstDecimals<37>> for ConstDecimals<6>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<7>
impl Add<ConstDecimals<37>> for ConstDecimals<7>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<8>
impl Add<ConstDecimals<37>> for ConstDecimals<8>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<9>
impl Add<ConstDecimals<37>> for ConstDecimals<9>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<10>
impl Add<ConstDecimals<37>> for ConstDecimals<10>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<11>
impl Add<ConstDecimals<37>> for ConstDecimals<11>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<12>
impl Add<ConstDecimals<37>> for ConstDecimals<12>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<13>
impl Add<ConstDecimals<37>> for ConstDecimals<13>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<14>
impl Add<ConstDecimals<37>> for ConstDecimals<14>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<15>
impl Add<ConstDecimals<37>> for ConstDecimals<15>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<16>
impl Add<ConstDecimals<37>> for ConstDecimals<16>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<17>
impl Add<ConstDecimals<37>> for ConstDecimals<17>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<18>
impl Add<ConstDecimals<37>> for ConstDecimals<18>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<19>
impl Add<ConstDecimals<37>> for ConstDecimals<19>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<20>
impl Add<ConstDecimals<37>> for ConstDecimals<20>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<21>
impl Add<ConstDecimals<37>> for ConstDecimals<21>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<22>
impl Add<ConstDecimals<37>> for ConstDecimals<22>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<23>
impl Add<ConstDecimals<37>> for ConstDecimals<23>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<24>
impl Add<ConstDecimals<37>> for ConstDecimals<24>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<25>
impl Add<ConstDecimals<37>> for ConstDecimals<25>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<26>
impl Add<ConstDecimals<37>> for ConstDecimals<26>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<27>
impl Add<ConstDecimals<37>> for ConstDecimals<27>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<28>
impl Add<ConstDecimals<37>> for ConstDecimals<28>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<29>
impl Add<ConstDecimals<37>> for ConstDecimals<29>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<30>
impl Add<ConstDecimals<37>> for ConstDecimals<30>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<31>
impl Add<ConstDecimals<37>> for ConstDecimals<31>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<32>
impl Add<ConstDecimals<37>> for ConstDecimals<32>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<33>
impl Add<ConstDecimals<37>> for ConstDecimals<33>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<34>
impl Add<ConstDecimals<37>> for ConstDecimals<34>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<35>
impl Add<ConstDecimals<37>> for ConstDecimals<35>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<36>
impl Add<ConstDecimals<37>> for ConstDecimals<36>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<38>
impl Add<ConstDecimals<37>> for ConstDecimals<38>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<39>
impl Add<ConstDecimals<37>> for ConstDecimals<39>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<40>
impl Add<ConstDecimals<37>> for ConstDecimals<40>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<41>
impl Add<ConstDecimals<37>> for ConstDecimals<41>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<42>
impl Add<ConstDecimals<37>> for ConstDecimals<42>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<43>
impl Add<ConstDecimals<37>> for ConstDecimals<43>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<44>
impl Add<ConstDecimals<37>> for ConstDecimals<44>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<45>
impl Add<ConstDecimals<37>> for ConstDecimals<45>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<46>
impl Add<ConstDecimals<37>> for ConstDecimals<46>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<47>
impl Add<ConstDecimals<37>> for ConstDecimals<47>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<48>
impl Add<ConstDecimals<37>> for ConstDecimals<48>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<49>
impl Add<ConstDecimals<37>> for ConstDecimals<49>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<50>
impl Add<ConstDecimals<37>> for ConstDecimals<50>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<51>
impl Add<ConstDecimals<37>> for ConstDecimals<51>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<52>
impl Add<ConstDecimals<37>> for ConstDecimals<52>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<53>
impl Add<ConstDecimals<37>> for ConstDecimals<53>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<54>
impl Add<ConstDecimals<37>> for ConstDecimals<54>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<55>
impl Add<ConstDecimals<37>> for ConstDecimals<55>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<56>
impl Add<ConstDecimals<37>> for ConstDecimals<56>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<57>
impl Add<ConstDecimals<37>> for ConstDecimals<57>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<58>
impl Add<ConstDecimals<37>> for ConstDecimals<58>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<59>
impl Add<ConstDecimals<37>> for ConstDecimals<59>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<60>
impl Add<ConstDecimals<37>> for ConstDecimals<60>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<61>
impl Add<ConstDecimals<37>> for ConstDecimals<61>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<62>
impl Add<ConstDecimals<37>> for ConstDecimals<62>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<63>
impl Add<ConstDecimals<37>> for ConstDecimals<63>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<37>> for ConstDecimals<64>
impl Add<ConstDecimals<37>> for ConstDecimals<64>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<0>
impl Add<ConstDecimals<38>> for ConstDecimals<0>
type Output = ConstDecimals<38>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<1>
impl Add<ConstDecimals<38>> for ConstDecimals<1>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<2>
impl Add<ConstDecimals<38>> for ConstDecimals<2>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<3>
impl Add<ConstDecimals<38>> for ConstDecimals<3>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<4>
impl Add<ConstDecimals<38>> for ConstDecimals<4>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<5>
impl Add<ConstDecimals<38>> for ConstDecimals<5>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<6>
impl Add<ConstDecimals<38>> for ConstDecimals<6>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<7>
impl Add<ConstDecimals<38>> for ConstDecimals<7>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<8>
impl Add<ConstDecimals<38>> for ConstDecimals<8>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<9>
impl Add<ConstDecimals<38>> for ConstDecimals<9>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<10>
impl Add<ConstDecimals<38>> for ConstDecimals<10>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<11>
impl Add<ConstDecimals<38>> for ConstDecimals<11>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<12>
impl Add<ConstDecimals<38>> for ConstDecimals<12>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<13>
impl Add<ConstDecimals<38>> for ConstDecimals<13>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<14>
impl Add<ConstDecimals<38>> for ConstDecimals<14>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<15>
impl Add<ConstDecimals<38>> for ConstDecimals<15>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<16>
impl Add<ConstDecimals<38>> for ConstDecimals<16>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<17>
impl Add<ConstDecimals<38>> for ConstDecimals<17>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<18>
impl Add<ConstDecimals<38>> for ConstDecimals<18>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<19>
impl Add<ConstDecimals<38>> for ConstDecimals<19>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<20>
impl Add<ConstDecimals<38>> for ConstDecimals<20>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<21>
impl Add<ConstDecimals<38>> for ConstDecimals<21>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<22>
impl Add<ConstDecimals<38>> for ConstDecimals<22>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<23>
impl Add<ConstDecimals<38>> for ConstDecimals<23>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<24>
impl Add<ConstDecimals<38>> for ConstDecimals<24>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<25>
impl Add<ConstDecimals<38>> for ConstDecimals<25>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<26>
impl Add<ConstDecimals<38>> for ConstDecimals<26>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<27>
impl Add<ConstDecimals<38>> for ConstDecimals<27>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<28>
impl Add<ConstDecimals<38>> for ConstDecimals<28>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<29>
impl Add<ConstDecimals<38>> for ConstDecimals<29>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<30>
impl Add<ConstDecimals<38>> for ConstDecimals<30>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<31>
impl Add<ConstDecimals<38>> for ConstDecimals<31>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<32>
impl Add<ConstDecimals<38>> for ConstDecimals<32>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<33>
impl Add<ConstDecimals<38>> for ConstDecimals<33>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<34>
impl Add<ConstDecimals<38>> for ConstDecimals<34>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<35>
impl Add<ConstDecimals<38>> for ConstDecimals<35>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<36>
impl Add<ConstDecimals<38>> for ConstDecimals<36>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<37>
impl Add<ConstDecimals<38>> for ConstDecimals<37>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<39>
impl Add<ConstDecimals<38>> for ConstDecimals<39>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<40>
impl Add<ConstDecimals<38>> for ConstDecimals<40>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<41>
impl Add<ConstDecimals<38>> for ConstDecimals<41>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<42>
impl Add<ConstDecimals<38>> for ConstDecimals<42>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<43>
impl Add<ConstDecimals<38>> for ConstDecimals<43>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<44>
impl Add<ConstDecimals<38>> for ConstDecimals<44>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<45>
impl Add<ConstDecimals<38>> for ConstDecimals<45>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<46>
impl Add<ConstDecimals<38>> for ConstDecimals<46>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<47>
impl Add<ConstDecimals<38>> for ConstDecimals<47>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<48>
impl Add<ConstDecimals<38>> for ConstDecimals<48>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<49>
impl Add<ConstDecimals<38>> for ConstDecimals<49>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<50>
impl Add<ConstDecimals<38>> for ConstDecimals<50>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<51>
impl Add<ConstDecimals<38>> for ConstDecimals<51>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<52>
impl Add<ConstDecimals<38>> for ConstDecimals<52>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<53>
impl Add<ConstDecimals<38>> for ConstDecimals<53>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<54>
impl Add<ConstDecimals<38>> for ConstDecimals<54>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<55>
impl Add<ConstDecimals<38>> for ConstDecimals<55>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<56>
impl Add<ConstDecimals<38>> for ConstDecimals<56>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<57>
impl Add<ConstDecimals<38>> for ConstDecimals<57>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<58>
impl Add<ConstDecimals<38>> for ConstDecimals<58>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<59>
impl Add<ConstDecimals<38>> for ConstDecimals<59>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<60>
impl Add<ConstDecimals<38>> for ConstDecimals<60>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<61>
impl Add<ConstDecimals<38>> for ConstDecimals<61>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<62>
impl Add<ConstDecimals<38>> for ConstDecimals<62>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<63>
impl Add<ConstDecimals<38>> for ConstDecimals<63>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<38>> for ConstDecimals<64>
impl Add<ConstDecimals<38>> for ConstDecimals<64>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<0>
impl Add<ConstDecimals<39>> for ConstDecimals<0>
type Output = ConstDecimals<39>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<1>
impl Add<ConstDecimals<39>> for ConstDecimals<1>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<2>
impl Add<ConstDecimals<39>> for ConstDecimals<2>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<3>
impl Add<ConstDecimals<39>> for ConstDecimals<3>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<4>
impl Add<ConstDecimals<39>> for ConstDecimals<4>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<5>
impl Add<ConstDecimals<39>> for ConstDecimals<5>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<6>
impl Add<ConstDecimals<39>> for ConstDecimals<6>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<7>
impl Add<ConstDecimals<39>> for ConstDecimals<7>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<8>
impl Add<ConstDecimals<39>> for ConstDecimals<8>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<9>
impl Add<ConstDecimals<39>> for ConstDecimals<9>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<10>
impl Add<ConstDecimals<39>> for ConstDecimals<10>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<11>
impl Add<ConstDecimals<39>> for ConstDecimals<11>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<12>
impl Add<ConstDecimals<39>> for ConstDecimals<12>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<13>
impl Add<ConstDecimals<39>> for ConstDecimals<13>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<14>
impl Add<ConstDecimals<39>> for ConstDecimals<14>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<15>
impl Add<ConstDecimals<39>> for ConstDecimals<15>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<16>
impl Add<ConstDecimals<39>> for ConstDecimals<16>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<17>
impl Add<ConstDecimals<39>> for ConstDecimals<17>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<18>
impl Add<ConstDecimals<39>> for ConstDecimals<18>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<19>
impl Add<ConstDecimals<39>> for ConstDecimals<19>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<20>
impl Add<ConstDecimals<39>> for ConstDecimals<20>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<21>
impl Add<ConstDecimals<39>> for ConstDecimals<21>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<22>
impl Add<ConstDecimals<39>> for ConstDecimals<22>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<23>
impl Add<ConstDecimals<39>> for ConstDecimals<23>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<24>
impl Add<ConstDecimals<39>> for ConstDecimals<24>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<25>
impl Add<ConstDecimals<39>> for ConstDecimals<25>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<26>
impl Add<ConstDecimals<39>> for ConstDecimals<26>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<27>
impl Add<ConstDecimals<39>> for ConstDecimals<27>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<28>
impl Add<ConstDecimals<39>> for ConstDecimals<28>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<29>
impl Add<ConstDecimals<39>> for ConstDecimals<29>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<30>
impl Add<ConstDecimals<39>> for ConstDecimals<30>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<31>
impl Add<ConstDecimals<39>> for ConstDecimals<31>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<32>
impl Add<ConstDecimals<39>> for ConstDecimals<32>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<33>
impl Add<ConstDecimals<39>> for ConstDecimals<33>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<34>
impl Add<ConstDecimals<39>> for ConstDecimals<34>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<35>
impl Add<ConstDecimals<39>> for ConstDecimals<35>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<36>
impl Add<ConstDecimals<39>> for ConstDecimals<36>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<37>
impl Add<ConstDecimals<39>> for ConstDecimals<37>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<38>
impl Add<ConstDecimals<39>> for ConstDecimals<38>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<40>
impl Add<ConstDecimals<39>> for ConstDecimals<40>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<41>
impl Add<ConstDecimals<39>> for ConstDecimals<41>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<42>
impl Add<ConstDecimals<39>> for ConstDecimals<42>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<43>
impl Add<ConstDecimals<39>> for ConstDecimals<43>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<44>
impl Add<ConstDecimals<39>> for ConstDecimals<44>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<45>
impl Add<ConstDecimals<39>> for ConstDecimals<45>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<46>
impl Add<ConstDecimals<39>> for ConstDecimals<46>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<47>
impl Add<ConstDecimals<39>> for ConstDecimals<47>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<48>
impl Add<ConstDecimals<39>> for ConstDecimals<48>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<49>
impl Add<ConstDecimals<39>> for ConstDecimals<49>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<50>
impl Add<ConstDecimals<39>> for ConstDecimals<50>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<51>
impl Add<ConstDecimals<39>> for ConstDecimals<51>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<52>
impl Add<ConstDecimals<39>> for ConstDecimals<52>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<53>
impl Add<ConstDecimals<39>> for ConstDecimals<53>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<54>
impl Add<ConstDecimals<39>> for ConstDecimals<54>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<55>
impl Add<ConstDecimals<39>> for ConstDecimals<55>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<56>
impl Add<ConstDecimals<39>> for ConstDecimals<56>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<57>
impl Add<ConstDecimals<39>> for ConstDecimals<57>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<58>
impl Add<ConstDecimals<39>> for ConstDecimals<58>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<59>
impl Add<ConstDecimals<39>> for ConstDecimals<59>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<60>
impl Add<ConstDecimals<39>> for ConstDecimals<60>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<61>
impl Add<ConstDecimals<39>> for ConstDecimals<61>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<62>
impl Add<ConstDecimals<39>> for ConstDecimals<62>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<63>
impl Add<ConstDecimals<39>> for ConstDecimals<63>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<39>> for ConstDecimals<64>
impl Add<ConstDecimals<39>> for ConstDecimals<64>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<0>
impl Add<ConstDecimals<40>> for ConstDecimals<0>
type Output = ConstDecimals<40>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<1>
impl Add<ConstDecimals<40>> for ConstDecimals<1>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<2>
impl Add<ConstDecimals<40>> for ConstDecimals<2>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<3>
impl Add<ConstDecimals<40>> for ConstDecimals<3>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<4>
impl Add<ConstDecimals<40>> for ConstDecimals<4>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<5>
impl Add<ConstDecimals<40>> for ConstDecimals<5>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<6>
impl Add<ConstDecimals<40>> for ConstDecimals<6>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<7>
impl Add<ConstDecimals<40>> for ConstDecimals<7>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<8>
impl Add<ConstDecimals<40>> for ConstDecimals<8>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<9>
impl Add<ConstDecimals<40>> for ConstDecimals<9>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<10>
impl Add<ConstDecimals<40>> for ConstDecimals<10>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<11>
impl Add<ConstDecimals<40>> for ConstDecimals<11>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<12>
impl Add<ConstDecimals<40>> for ConstDecimals<12>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<13>
impl Add<ConstDecimals<40>> for ConstDecimals<13>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<14>
impl Add<ConstDecimals<40>> for ConstDecimals<14>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<15>
impl Add<ConstDecimals<40>> for ConstDecimals<15>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<16>
impl Add<ConstDecimals<40>> for ConstDecimals<16>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<17>
impl Add<ConstDecimals<40>> for ConstDecimals<17>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<18>
impl Add<ConstDecimals<40>> for ConstDecimals<18>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<19>
impl Add<ConstDecimals<40>> for ConstDecimals<19>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<20>
impl Add<ConstDecimals<40>> for ConstDecimals<20>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<21>
impl Add<ConstDecimals<40>> for ConstDecimals<21>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<22>
impl Add<ConstDecimals<40>> for ConstDecimals<22>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<23>
impl Add<ConstDecimals<40>> for ConstDecimals<23>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<24>
impl Add<ConstDecimals<40>> for ConstDecimals<24>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<25>
impl Add<ConstDecimals<40>> for ConstDecimals<25>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<26>
impl Add<ConstDecimals<40>> for ConstDecimals<26>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<27>
impl Add<ConstDecimals<40>> for ConstDecimals<27>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<28>
impl Add<ConstDecimals<40>> for ConstDecimals<28>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<29>
impl Add<ConstDecimals<40>> for ConstDecimals<29>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<30>
impl Add<ConstDecimals<40>> for ConstDecimals<30>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<31>
impl Add<ConstDecimals<40>> for ConstDecimals<31>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<32>
impl Add<ConstDecimals<40>> for ConstDecimals<32>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<33>
impl Add<ConstDecimals<40>> for ConstDecimals<33>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<34>
impl Add<ConstDecimals<40>> for ConstDecimals<34>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<35>
impl Add<ConstDecimals<40>> for ConstDecimals<35>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<36>
impl Add<ConstDecimals<40>> for ConstDecimals<36>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<37>
impl Add<ConstDecimals<40>> for ConstDecimals<37>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<38>
impl Add<ConstDecimals<40>> for ConstDecimals<38>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<39>
impl Add<ConstDecimals<40>> for ConstDecimals<39>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<41>
impl Add<ConstDecimals<40>> for ConstDecimals<41>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<42>
impl Add<ConstDecimals<40>> for ConstDecimals<42>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<43>
impl Add<ConstDecimals<40>> for ConstDecimals<43>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<44>
impl Add<ConstDecimals<40>> for ConstDecimals<44>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<45>
impl Add<ConstDecimals<40>> for ConstDecimals<45>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<46>
impl Add<ConstDecimals<40>> for ConstDecimals<46>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<47>
impl Add<ConstDecimals<40>> for ConstDecimals<47>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<48>
impl Add<ConstDecimals<40>> for ConstDecimals<48>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<49>
impl Add<ConstDecimals<40>> for ConstDecimals<49>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<50>
impl Add<ConstDecimals<40>> for ConstDecimals<50>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<51>
impl Add<ConstDecimals<40>> for ConstDecimals<51>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<52>
impl Add<ConstDecimals<40>> for ConstDecimals<52>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<53>
impl Add<ConstDecimals<40>> for ConstDecimals<53>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<54>
impl Add<ConstDecimals<40>> for ConstDecimals<54>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<55>
impl Add<ConstDecimals<40>> for ConstDecimals<55>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<56>
impl Add<ConstDecimals<40>> for ConstDecimals<56>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<57>
impl Add<ConstDecimals<40>> for ConstDecimals<57>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<58>
impl Add<ConstDecimals<40>> for ConstDecimals<58>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<59>
impl Add<ConstDecimals<40>> for ConstDecimals<59>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<60>
impl Add<ConstDecimals<40>> for ConstDecimals<60>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<61>
impl Add<ConstDecimals<40>> for ConstDecimals<61>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<62>
impl Add<ConstDecimals<40>> for ConstDecimals<62>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<63>
impl Add<ConstDecimals<40>> for ConstDecimals<63>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<40>> for ConstDecimals<64>
impl Add<ConstDecimals<40>> for ConstDecimals<64>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<0>
impl Add<ConstDecimals<41>> for ConstDecimals<0>
type Output = ConstDecimals<41>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<1>
impl Add<ConstDecimals<41>> for ConstDecimals<1>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<2>
impl Add<ConstDecimals<41>> for ConstDecimals<2>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<3>
impl Add<ConstDecimals<41>> for ConstDecimals<3>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<4>
impl Add<ConstDecimals<41>> for ConstDecimals<4>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<5>
impl Add<ConstDecimals<41>> for ConstDecimals<5>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<6>
impl Add<ConstDecimals<41>> for ConstDecimals<6>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<7>
impl Add<ConstDecimals<41>> for ConstDecimals<7>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<8>
impl Add<ConstDecimals<41>> for ConstDecimals<8>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<9>
impl Add<ConstDecimals<41>> for ConstDecimals<9>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<10>
impl Add<ConstDecimals<41>> for ConstDecimals<10>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<11>
impl Add<ConstDecimals<41>> for ConstDecimals<11>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<12>
impl Add<ConstDecimals<41>> for ConstDecimals<12>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<13>
impl Add<ConstDecimals<41>> for ConstDecimals<13>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<14>
impl Add<ConstDecimals<41>> for ConstDecimals<14>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<15>
impl Add<ConstDecimals<41>> for ConstDecimals<15>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<16>
impl Add<ConstDecimals<41>> for ConstDecimals<16>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<17>
impl Add<ConstDecimals<41>> for ConstDecimals<17>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<18>
impl Add<ConstDecimals<41>> for ConstDecimals<18>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<19>
impl Add<ConstDecimals<41>> for ConstDecimals<19>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<20>
impl Add<ConstDecimals<41>> for ConstDecimals<20>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<21>
impl Add<ConstDecimals<41>> for ConstDecimals<21>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<22>
impl Add<ConstDecimals<41>> for ConstDecimals<22>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<23>
impl Add<ConstDecimals<41>> for ConstDecimals<23>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<24>
impl Add<ConstDecimals<41>> for ConstDecimals<24>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<25>
impl Add<ConstDecimals<41>> for ConstDecimals<25>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<26>
impl Add<ConstDecimals<41>> for ConstDecimals<26>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<27>
impl Add<ConstDecimals<41>> for ConstDecimals<27>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<28>
impl Add<ConstDecimals<41>> for ConstDecimals<28>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<29>
impl Add<ConstDecimals<41>> for ConstDecimals<29>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<30>
impl Add<ConstDecimals<41>> for ConstDecimals<30>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<31>
impl Add<ConstDecimals<41>> for ConstDecimals<31>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<32>
impl Add<ConstDecimals<41>> for ConstDecimals<32>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<33>
impl Add<ConstDecimals<41>> for ConstDecimals<33>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<34>
impl Add<ConstDecimals<41>> for ConstDecimals<34>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<35>
impl Add<ConstDecimals<41>> for ConstDecimals<35>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<36>
impl Add<ConstDecimals<41>> for ConstDecimals<36>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<37>
impl Add<ConstDecimals<41>> for ConstDecimals<37>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<38>
impl Add<ConstDecimals<41>> for ConstDecimals<38>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<39>
impl Add<ConstDecimals<41>> for ConstDecimals<39>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<40>
impl Add<ConstDecimals<41>> for ConstDecimals<40>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<42>
impl Add<ConstDecimals<41>> for ConstDecimals<42>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<43>
impl Add<ConstDecimals<41>> for ConstDecimals<43>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<44>
impl Add<ConstDecimals<41>> for ConstDecimals<44>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<45>
impl Add<ConstDecimals<41>> for ConstDecimals<45>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<46>
impl Add<ConstDecimals<41>> for ConstDecimals<46>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<47>
impl Add<ConstDecimals<41>> for ConstDecimals<47>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<48>
impl Add<ConstDecimals<41>> for ConstDecimals<48>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<49>
impl Add<ConstDecimals<41>> for ConstDecimals<49>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<50>
impl Add<ConstDecimals<41>> for ConstDecimals<50>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<51>
impl Add<ConstDecimals<41>> for ConstDecimals<51>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<52>
impl Add<ConstDecimals<41>> for ConstDecimals<52>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<53>
impl Add<ConstDecimals<41>> for ConstDecimals<53>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<54>
impl Add<ConstDecimals<41>> for ConstDecimals<54>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<55>
impl Add<ConstDecimals<41>> for ConstDecimals<55>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<56>
impl Add<ConstDecimals<41>> for ConstDecimals<56>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<57>
impl Add<ConstDecimals<41>> for ConstDecimals<57>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<58>
impl Add<ConstDecimals<41>> for ConstDecimals<58>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<59>
impl Add<ConstDecimals<41>> for ConstDecimals<59>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<60>
impl Add<ConstDecimals<41>> for ConstDecimals<60>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<61>
impl Add<ConstDecimals<41>> for ConstDecimals<61>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<62>
impl Add<ConstDecimals<41>> for ConstDecimals<62>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<63>
impl Add<ConstDecimals<41>> for ConstDecimals<63>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<41>> for ConstDecimals<64>
impl Add<ConstDecimals<41>> for ConstDecimals<64>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<0>
impl Add<ConstDecimals<42>> for ConstDecimals<0>
type Output = ConstDecimals<42>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<1>
impl Add<ConstDecimals<42>> for ConstDecimals<1>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<2>
impl Add<ConstDecimals<42>> for ConstDecimals<2>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<3>
impl Add<ConstDecimals<42>> for ConstDecimals<3>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<4>
impl Add<ConstDecimals<42>> for ConstDecimals<4>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<5>
impl Add<ConstDecimals<42>> for ConstDecimals<5>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<6>
impl Add<ConstDecimals<42>> for ConstDecimals<6>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<7>
impl Add<ConstDecimals<42>> for ConstDecimals<7>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<8>
impl Add<ConstDecimals<42>> for ConstDecimals<8>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<9>
impl Add<ConstDecimals<42>> for ConstDecimals<9>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<10>
impl Add<ConstDecimals<42>> for ConstDecimals<10>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<11>
impl Add<ConstDecimals<42>> for ConstDecimals<11>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<12>
impl Add<ConstDecimals<42>> for ConstDecimals<12>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<13>
impl Add<ConstDecimals<42>> for ConstDecimals<13>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<14>
impl Add<ConstDecimals<42>> for ConstDecimals<14>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<15>
impl Add<ConstDecimals<42>> for ConstDecimals<15>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<16>
impl Add<ConstDecimals<42>> for ConstDecimals<16>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<17>
impl Add<ConstDecimals<42>> for ConstDecimals<17>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<18>
impl Add<ConstDecimals<42>> for ConstDecimals<18>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<19>
impl Add<ConstDecimals<42>> for ConstDecimals<19>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<20>
impl Add<ConstDecimals<42>> for ConstDecimals<20>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<21>
impl Add<ConstDecimals<42>> for ConstDecimals<21>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<22>
impl Add<ConstDecimals<42>> for ConstDecimals<22>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<23>
impl Add<ConstDecimals<42>> for ConstDecimals<23>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<24>
impl Add<ConstDecimals<42>> for ConstDecimals<24>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<25>
impl Add<ConstDecimals<42>> for ConstDecimals<25>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<26>
impl Add<ConstDecimals<42>> for ConstDecimals<26>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<27>
impl Add<ConstDecimals<42>> for ConstDecimals<27>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<28>
impl Add<ConstDecimals<42>> for ConstDecimals<28>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<29>
impl Add<ConstDecimals<42>> for ConstDecimals<29>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<30>
impl Add<ConstDecimals<42>> for ConstDecimals<30>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<31>
impl Add<ConstDecimals<42>> for ConstDecimals<31>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<32>
impl Add<ConstDecimals<42>> for ConstDecimals<32>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<33>
impl Add<ConstDecimals<42>> for ConstDecimals<33>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<34>
impl Add<ConstDecimals<42>> for ConstDecimals<34>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<35>
impl Add<ConstDecimals<42>> for ConstDecimals<35>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<36>
impl Add<ConstDecimals<42>> for ConstDecimals<36>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<37>
impl Add<ConstDecimals<42>> for ConstDecimals<37>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<38>
impl Add<ConstDecimals<42>> for ConstDecimals<38>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<39>
impl Add<ConstDecimals<42>> for ConstDecimals<39>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<40>
impl Add<ConstDecimals<42>> for ConstDecimals<40>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<41>
impl Add<ConstDecimals<42>> for ConstDecimals<41>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<43>
impl Add<ConstDecimals<42>> for ConstDecimals<43>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<44>
impl Add<ConstDecimals<42>> for ConstDecimals<44>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<45>
impl Add<ConstDecimals<42>> for ConstDecimals<45>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<46>
impl Add<ConstDecimals<42>> for ConstDecimals<46>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<47>
impl Add<ConstDecimals<42>> for ConstDecimals<47>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<48>
impl Add<ConstDecimals<42>> for ConstDecimals<48>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<49>
impl Add<ConstDecimals<42>> for ConstDecimals<49>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<50>
impl Add<ConstDecimals<42>> for ConstDecimals<50>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<51>
impl Add<ConstDecimals<42>> for ConstDecimals<51>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<52>
impl Add<ConstDecimals<42>> for ConstDecimals<52>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<53>
impl Add<ConstDecimals<42>> for ConstDecimals<53>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<54>
impl Add<ConstDecimals<42>> for ConstDecimals<54>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<55>
impl Add<ConstDecimals<42>> for ConstDecimals<55>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<56>
impl Add<ConstDecimals<42>> for ConstDecimals<56>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<57>
impl Add<ConstDecimals<42>> for ConstDecimals<57>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<58>
impl Add<ConstDecimals<42>> for ConstDecimals<58>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<59>
impl Add<ConstDecimals<42>> for ConstDecimals<59>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<60>
impl Add<ConstDecimals<42>> for ConstDecimals<60>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<61>
impl Add<ConstDecimals<42>> for ConstDecimals<61>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<62>
impl Add<ConstDecimals<42>> for ConstDecimals<62>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<63>
impl Add<ConstDecimals<42>> for ConstDecimals<63>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<42>> for ConstDecimals<64>
impl Add<ConstDecimals<42>> for ConstDecimals<64>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<0>
impl Add<ConstDecimals<43>> for ConstDecimals<0>
type Output = ConstDecimals<43>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<1>
impl Add<ConstDecimals<43>> for ConstDecimals<1>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<2>
impl Add<ConstDecimals<43>> for ConstDecimals<2>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<3>
impl Add<ConstDecimals<43>> for ConstDecimals<3>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<4>
impl Add<ConstDecimals<43>> for ConstDecimals<4>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<5>
impl Add<ConstDecimals<43>> for ConstDecimals<5>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<6>
impl Add<ConstDecimals<43>> for ConstDecimals<6>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<7>
impl Add<ConstDecimals<43>> for ConstDecimals<7>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<8>
impl Add<ConstDecimals<43>> for ConstDecimals<8>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<9>
impl Add<ConstDecimals<43>> for ConstDecimals<9>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<10>
impl Add<ConstDecimals<43>> for ConstDecimals<10>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<11>
impl Add<ConstDecimals<43>> for ConstDecimals<11>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<12>
impl Add<ConstDecimals<43>> for ConstDecimals<12>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<13>
impl Add<ConstDecimals<43>> for ConstDecimals<13>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<14>
impl Add<ConstDecimals<43>> for ConstDecimals<14>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<15>
impl Add<ConstDecimals<43>> for ConstDecimals<15>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<16>
impl Add<ConstDecimals<43>> for ConstDecimals<16>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<17>
impl Add<ConstDecimals<43>> for ConstDecimals<17>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<18>
impl Add<ConstDecimals<43>> for ConstDecimals<18>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<19>
impl Add<ConstDecimals<43>> for ConstDecimals<19>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<20>
impl Add<ConstDecimals<43>> for ConstDecimals<20>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<21>
impl Add<ConstDecimals<43>> for ConstDecimals<21>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<22>
impl Add<ConstDecimals<43>> for ConstDecimals<22>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<23>
impl Add<ConstDecimals<43>> for ConstDecimals<23>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<24>
impl Add<ConstDecimals<43>> for ConstDecimals<24>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<25>
impl Add<ConstDecimals<43>> for ConstDecimals<25>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<26>
impl Add<ConstDecimals<43>> for ConstDecimals<26>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<27>
impl Add<ConstDecimals<43>> for ConstDecimals<27>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<28>
impl Add<ConstDecimals<43>> for ConstDecimals<28>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<29>
impl Add<ConstDecimals<43>> for ConstDecimals<29>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<30>
impl Add<ConstDecimals<43>> for ConstDecimals<30>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<31>
impl Add<ConstDecimals<43>> for ConstDecimals<31>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<32>
impl Add<ConstDecimals<43>> for ConstDecimals<32>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<33>
impl Add<ConstDecimals<43>> for ConstDecimals<33>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<34>
impl Add<ConstDecimals<43>> for ConstDecimals<34>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<35>
impl Add<ConstDecimals<43>> for ConstDecimals<35>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<36>
impl Add<ConstDecimals<43>> for ConstDecimals<36>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<37>
impl Add<ConstDecimals<43>> for ConstDecimals<37>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<38>
impl Add<ConstDecimals<43>> for ConstDecimals<38>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<39>
impl Add<ConstDecimals<43>> for ConstDecimals<39>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<40>
impl Add<ConstDecimals<43>> for ConstDecimals<40>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<41>
impl Add<ConstDecimals<43>> for ConstDecimals<41>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<42>
impl Add<ConstDecimals<43>> for ConstDecimals<42>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<44>
impl Add<ConstDecimals<43>> for ConstDecimals<44>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<45>
impl Add<ConstDecimals<43>> for ConstDecimals<45>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<46>
impl Add<ConstDecimals<43>> for ConstDecimals<46>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<47>
impl Add<ConstDecimals<43>> for ConstDecimals<47>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<48>
impl Add<ConstDecimals<43>> for ConstDecimals<48>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<49>
impl Add<ConstDecimals<43>> for ConstDecimals<49>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<50>
impl Add<ConstDecimals<43>> for ConstDecimals<50>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<51>
impl Add<ConstDecimals<43>> for ConstDecimals<51>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<52>
impl Add<ConstDecimals<43>> for ConstDecimals<52>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<53>
impl Add<ConstDecimals<43>> for ConstDecimals<53>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<54>
impl Add<ConstDecimals<43>> for ConstDecimals<54>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<55>
impl Add<ConstDecimals<43>> for ConstDecimals<55>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<56>
impl Add<ConstDecimals<43>> for ConstDecimals<56>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<57>
impl Add<ConstDecimals<43>> for ConstDecimals<57>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<58>
impl Add<ConstDecimals<43>> for ConstDecimals<58>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<59>
impl Add<ConstDecimals<43>> for ConstDecimals<59>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<60>
impl Add<ConstDecimals<43>> for ConstDecimals<60>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<61>
impl Add<ConstDecimals<43>> for ConstDecimals<61>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<62>
impl Add<ConstDecimals<43>> for ConstDecimals<62>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<63>
impl Add<ConstDecimals<43>> for ConstDecimals<63>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<43>> for ConstDecimals<64>
impl Add<ConstDecimals<43>> for ConstDecimals<64>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<0>
impl Add<ConstDecimals<44>> for ConstDecimals<0>
type Output = ConstDecimals<44>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<1>
impl Add<ConstDecimals<44>> for ConstDecimals<1>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<2>
impl Add<ConstDecimals<44>> for ConstDecimals<2>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<3>
impl Add<ConstDecimals<44>> for ConstDecimals<3>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<4>
impl Add<ConstDecimals<44>> for ConstDecimals<4>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<5>
impl Add<ConstDecimals<44>> for ConstDecimals<5>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<6>
impl Add<ConstDecimals<44>> for ConstDecimals<6>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<7>
impl Add<ConstDecimals<44>> for ConstDecimals<7>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<8>
impl Add<ConstDecimals<44>> for ConstDecimals<8>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<9>
impl Add<ConstDecimals<44>> for ConstDecimals<9>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<10>
impl Add<ConstDecimals<44>> for ConstDecimals<10>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<11>
impl Add<ConstDecimals<44>> for ConstDecimals<11>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<12>
impl Add<ConstDecimals<44>> for ConstDecimals<12>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<13>
impl Add<ConstDecimals<44>> for ConstDecimals<13>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<14>
impl Add<ConstDecimals<44>> for ConstDecimals<14>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<15>
impl Add<ConstDecimals<44>> for ConstDecimals<15>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<16>
impl Add<ConstDecimals<44>> for ConstDecimals<16>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<17>
impl Add<ConstDecimals<44>> for ConstDecimals<17>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<18>
impl Add<ConstDecimals<44>> for ConstDecimals<18>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<19>
impl Add<ConstDecimals<44>> for ConstDecimals<19>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<20>
impl Add<ConstDecimals<44>> for ConstDecimals<20>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<21>
impl Add<ConstDecimals<44>> for ConstDecimals<21>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<22>
impl Add<ConstDecimals<44>> for ConstDecimals<22>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<23>
impl Add<ConstDecimals<44>> for ConstDecimals<23>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<24>
impl Add<ConstDecimals<44>> for ConstDecimals<24>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<25>
impl Add<ConstDecimals<44>> for ConstDecimals<25>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<26>
impl Add<ConstDecimals<44>> for ConstDecimals<26>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<27>
impl Add<ConstDecimals<44>> for ConstDecimals<27>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<28>
impl Add<ConstDecimals<44>> for ConstDecimals<28>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<29>
impl Add<ConstDecimals<44>> for ConstDecimals<29>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<30>
impl Add<ConstDecimals<44>> for ConstDecimals<30>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<31>
impl Add<ConstDecimals<44>> for ConstDecimals<31>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<32>
impl Add<ConstDecimals<44>> for ConstDecimals<32>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<33>
impl Add<ConstDecimals<44>> for ConstDecimals<33>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<34>
impl Add<ConstDecimals<44>> for ConstDecimals<34>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<35>
impl Add<ConstDecimals<44>> for ConstDecimals<35>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<36>
impl Add<ConstDecimals<44>> for ConstDecimals<36>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<37>
impl Add<ConstDecimals<44>> for ConstDecimals<37>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<38>
impl Add<ConstDecimals<44>> for ConstDecimals<38>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<39>
impl Add<ConstDecimals<44>> for ConstDecimals<39>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<40>
impl Add<ConstDecimals<44>> for ConstDecimals<40>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<41>
impl Add<ConstDecimals<44>> for ConstDecimals<41>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<42>
impl Add<ConstDecimals<44>> for ConstDecimals<42>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<43>
impl Add<ConstDecimals<44>> for ConstDecimals<43>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<45>
impl Add<ConstDecimals<44>> for ConstDecimals<45>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<46>
impl Add<ConstDecimals<44>> for ConstDecimals<46>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<47>
impl Add<ConstDecimals<44>> for ConstDecimals<47>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<48>
impl Add<ConstDecimals<44>> for ConstDecimals<48>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<49>
impl Add<ConstDecimals<44>> for ConstDecimals<49>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<50>
impl Add<ConstDecimals<44>> for ConstDecimals<50>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<51>
impl Add<ConstDecimals<44>> for ConstDecimals<51>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<52>
impl Add<ConstDecimals<44>> for ConstDecimals<52>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<53>
impl Add<ConstDecimals<44>> for ConstDecimals<53>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<54>
impl Add<ConstDecimals<44>> for ConstDecimals<54>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<55>
impl Add<ConstDecimals<44>> for ConstDecimals<55>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<56>
impl Add<ConstDecimals<44>> for ConstDecimals<56>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<57>
impl Add<ConstDecimals<44>> for ConstDecimals<57>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<58>
impl Add<ConstDecimals<44>> for ConstDecimals<58>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<59>
impl Add<ConstDecimals<44>> for ConstDecimals<59>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<60>
impl Add<ConstDecimals<44>> for ConstDecimals<60>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<61>
impl Add<ConstDecimals<44>> for ConstDecimals<61>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<62>
impl Add<ConstDecimals<44>> for ConstDecimals<62>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<63>
impl Add<ConstDecimals<44>> for ConstDecimals<63>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<44>> for ConstDecimals<64>
impl Add<ConstDecimals<44>> for ConstDecimals<64>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<0>
impl Add<ConstDecimals<45>> for ConstDecimals<0>
type Output = ConstDecimals<45>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<1>
impl Add<ConstDecimals<45>> for ConstDecimals<1>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<2>
impl Add<ConstDecimals<45>> for ConstDecimals<2>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<3>
impl Add<ConstDecimals<45>> for ConstDecimals<3>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<4>
impl Add<ConstDecimals<45>> for ConstDecimals<4>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<5>
impl Add<ConstDecimals<45>> for ConstDecimals<5>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<6>
impl Add<ConstDecimals<45>> for ConstDecimals<6>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<7>
impl Add<ConstDecimals<45>> for ConstDecimals<7>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<8>
impl Add<ConstDecimals<45>> for ConstDecimals<8>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<9>
impl Add<ConstDecimals<45>> for ConstDecimals<9>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<10>
impl Add<ConstDecimals<45>> for ConstDecimals<10>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<11>
impl Add<ConstDecimals<45>> for ConstDecimals<11>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<12>
impl Add<ConstDecimals<45>> for ConstDecimals<12>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<13>
impl Add<ConstDecimals<45>> for ConstDecimals<13>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<14>
impl Add<ConstDecimals<45>> for ConstDecimals<14>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<15>
impl Add<ConstDecimals<45>> for ConstDecimals<15>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<16>
impl Add<ConstDecimals<45>> for ConstDecimals<16>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<17>
impl Add<ConstDecimals<45>> for ConstDecimals<17>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<18>
impl Add<ConstDecimals<45>> for ConstDecimals<18>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<19>
impl Add<ConstDecimals<45>> for ConstDecimals<19>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<20>
impl Add<ConstDecimals<45>> for ConstDecimals<20>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<21>
impl Add<ConstDecimals<45>> for ConstDecimals<21>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<22>
impl Add<ConstDecimals<45>> for ConstDecimals<22>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<23>
impl Add<ConstDecimals<45>> for ConstDecimals<23>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<24>
impl Add<ConstDecimals<45>> for ConstDecimals<24>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<25>
impl Add<ConstDecimals<45>> for ConstDecimals<25>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<26>
impl Add<ConstDecimals<45>> for ConstDecimals<26>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<27>
impl Add<ConstDecimals<45>> for ConstDecimals<27>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<28>
impl Add<ConstDecimals<45>> for ConstDecimals<28>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<29>
impl Add<ConstDecimals<45>> for ConstDecimals<29>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<30>
impl Add<ConstDecimals<45>> for ConstDecimals<30>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<31>
impl Add<ConstDecimals<45>> for ConstDecimals<31>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<32>
impl Add<ConstDecimals<45>> for ConstDecimals<32>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<33>
impl Add<ConstDecimals<45>> for ConstDecimals<33>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<34>
impl Add<ConstDecimals<45>> for ConstDecimals<34>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<35>
impl Add<ConstDecimals<45>> for ConstDecimals<35>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<36>
impl Add<ConstDecimals<45>> for ConstDecimals<36>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<37>
impl Add<ConstDecimals<45>> for ConstDecimals<37>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<38>
impl Add<ConstDecimals<45>> for ConstDecimals<38>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<39>
impl Add<ConstDecimals<45>> for ConstDecimals<39>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<40>
impl Add<ConstDecimals<45>> for ConstDecimals<40>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<41>
impl Add<ConstDecimals<45>> for ConstDecimals<41>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<42>
impl Add<ConstDecimals<45>> for ConstDecimals<42>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<43>
impl Add<ConstDecimals<45>> for ConstDecimals<43>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<44>
impl Add<ConstDecimals<45>> for ConstDecimals<44>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<46>
impl Add<ConstDecimals<45>> for ConstDecimals<46>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<47>
impl Add<ConstDecimals<45>> for ConstDecimals<47>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<48>
impl Add<ConstDecimals<45>> for ConstDecimals<48>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<49>
impl Add<ConstDecimals<45>> for ConstDecimals<49>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<50>
impl Add<ConstDecimals<45>> for ConstDecimals<50>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<51>
impl Add<ConstDecimals<45>> for ConstDecimals<51>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<52>
impl Add<ConstDecimals<45>> for ConstDecimals<52>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<53>
impl Add<ConstDecimals<45>> for ConstDecimals<53>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<54>
impl Add<ConstDecimals<45>> for ConstDecimals<54>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<55>
impl Add<ConstDecimals<45>> for ConstDecimals<55>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<56>
impl Add<ConstDecimals<45>> for ConstDecimals<56>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<57>
impl Add<ConstDecimals<45>> for ConstDecimals<57>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<58>
impl Add<ConstDecimals<45>> for ConstDecimals<58>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<59>
impl Add<ConstDecimals<45>> for ConstDecimals<59>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<60>
impl Add<ConstDecimals<45>> for ConstDecimals<60>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<61>
impl Add<ConstDecimals<45>> for ConstDecimals<61>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<62>
impl Add<ConstDecimals<45>> for ConstDecimals<62>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<63>
impl Add<ConstDecimals<45>> for ConstDecimals<63>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<45>> for ConstDecimals<64>
impl Add<ConstDecimals<45>> for ConstDecimals<64>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<0>
impl Add<ConstDecimals<46>> for ConstDecimals<0>
type Output = ConstDecimals<46>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<1>
impl Add<ConstDecimals<46>> for ConstDecimals<1>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<2>
impl Add<ConstDecimals<46>> for ConstDecimals<2>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<3>
impl Add<ConstDecimals<46>> for ConstDecimals<3>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<4>
impl Add<ConstDecimals<46>> for ConstDecimals<4>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<5>
impl Add<ConstDecimals<46>> for ConstDecimals<5>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<6>
impl Add<ConstDecimals<46>> for ConstDecimals<6>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<7>
impl Add<ConstDecimals<46>> for ConstDecimals<7>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<8>
impl Add<ConstDecimals<46>> for ConstDecimals<8>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<9>
impl Add<ConstDecimals<46>> for ConstDecimals<9>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<10>
impl Add<ConstDecimals<46>> for ConstDecimals<10>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<11>
impl Add<ConstDecimals<46>> for ConstDecimals<11>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<12>
impl Add<ConstDecimals<46>> for ConstDecimals<12>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<13>
impl Add<ConstDecimals<46>> for ConstDecimals<13>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<14>
impl Add<ConstDecimals<46>> for ConstDecimals<14>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<15>
impl Add<ConstDecimals<46>> for ConstDecimals<15>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<16>
impl Add<ConstDecimals<46>> for ConstDecimals<16>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<17>
impl Add<ConstDecimals<46>> for ConstDecimals<17>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<18>
impl Add<ConstDecimals<46>> for ConstDecimals<18>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<19>
impl Add<ConstDecimals<46>> for ConstDecimals<19>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<20>
impl Add<ConstDecimals<46>> for ConstDecimals<20>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<21>
impl Add<ConstDecimals<46>> for ConstDecimals<21>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<22>
impl Add<ConstDecimals<46>> for ConstDecimals<22>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<23>
impl Add<ConstDecimals<46>> for ConstDecimals<23>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<24>
impl Add<ConstDecimals<46>> for ConstDecimals<24>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<25>
impl Add<ConstDecimals<46>> for ConstDecimals<25>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<26>
impl Add<ConstDecimals<46>> for ConstDecimals<26>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<27>
impl Add<ConstDecimals<46>> for ConstDecimals<27>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<28>
impl Add<ConstDecimals<46>> for ConstDecimals<28>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<29>
impl Add<ConstDecimals<46>> for ConstDecimals<29>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<30>
impl Add<ConstDecimals<46>> for ConstDecimals<30>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<31>
impl Add<ConstDecimals<46>> for ConstDecimals<31>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<32>
impl Add<ConstDecimals<46>> for ConstDecimals<32>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<33>
impl Add<ConstDecimals<46>> for ConstDecimals<33>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<34>
impl Add<ConstDecimals<46>> for ConstDecimals<34>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<35>
impl Add<ConstDecimals<46>> for ConstDecimals<35>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<36>
impl Add<ConstDecimals<46>> for ConstDecimals<36>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<37>
impl Add<ConstDecimals<46>> for ConstDecimals<37>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<38>
impl Add<ConstDecimals<46>> for ConstDecimals<38>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<39>
impl Add<ConstDecimals<46>> for ConstDecimals<39>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<40>
impl Add<ConstDecimals<46>> for ConstDecimals<40>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<41>
impl Add<ConstDecimals<46>> for ConstDecimals<41>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<42>
impl Add<ConstDecimals<46>> for ConstDecimals<42>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<43>
impl Add<ConstDecimals<46>> for ConstDecimals<43>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<44>
impl Add<ConstDecimals<46>> for ConstDecimals<44>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<45>
impl Add<ConstDecimals<46>> for ConstDecimals<45>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<47>
impl Add<ConstDecimals<46>> for ConstDecimals<47>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<48>
impl Add<ConstDecimals<46>> for ConstDecimals<48>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<49>
impl Add<ConstDecimals<46>> for ConstDecimals<49>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<50>
impl Add<ConstDecimals<46>> for ConstDecimals<50>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<51>
impl Add<ConstDecimals<46>> for ConstDecimals<51>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<52>
impl Add<ConstDecimals<46>> for ConstDecimals<52>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<53>
impl Add<ConstDecimals<46>> for ConstDecimals<53>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<54>
impl Add<ConstDecimals<46>> for ConstDecimals<54>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<55>
impl Add<ConstDecimals<46>> for ConstDecimals<55>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<56>
impl Add<ConstDecimals<46>> for ConstDecimals<56>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<57>
impl Add<ConstDecimals<46>> for ConstDecimals<57>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<58>
impl Add<ConstDecimals<46>> for ConstDecimals<58>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<59>
impl Add<ConstDecimals<46>> for ConstDecimals<59>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<60>
impl Add<ConstDecimals<46>> for ConstDecimals<60>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<61>
impl Add<ConstDecimals<46>> for ConstDecimals<61>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<62>
impl Add<ConstDecimals<46>> for ConstDecimals<62>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<63>
impl Add<ConstDecimals<46>> for ConstDecimals<63>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<46>> for ConstDecimals<64>
impl Add<ConstDecimals<46>> for ConstDecimals<64>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<0>
impl Add<ConstDecimals<47>> for ConstDecimals<0>
type Output = ConstDecimals<47>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<1>
impl Add<ConstDecimals<47>> for ConstDecimals<1>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<2>
impl Add<ConstDecimals<47>> for ConstDecimals<2>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<3>
impl Add<ConstDecimals<47>> for ConstDecimals<3>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<4>
impl Add<ConstDecimals<47>> for ConstDecimals<4>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<5>
impl Add<ConstDecimals<47>> for ConstDecimals<5>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<6>
impl Add<ConstDecimals<47>> for ConstDecimals<6>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<7>
impl Add<ConstDecimals<47>> for ConstDecimals<7>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<8>
impl Add<ConstDecimals<47>> for ConstDecimals<8>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<9>
impl Add<ConstDecimals<47>> for ConstDecimals<9>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<10>
impl Add<ConstDecimals<47>> for ConstDecimals<10>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<11>
impl Add<ConstDecimals<47>> for ConstDecimals<11>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<12>
impl Add<ConstDecimals<47>> for ConstDecimals<12>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<13>
impl Add<ConstDecimals<47>> for ConstDecimals<13>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<14>
impl Add<ConstDecimals<47>> for ConstDecimals<14>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<15>
impl Add<ConstDecimals<47>> for ConstDecimals<15>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<16>
impl Add<ConstDecimals<47>> for ConstDecimals<16>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<17>
impl Add<ConstDecimals<47>> for ConstDecimals<17>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<18>
impl Add<ConstDecimals<47>> for ConstDecimals<18>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<19>
impl Add<ConstDecimals<47>> for ConstDecimals<19>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<20>
impl Add<ConstDecimals<47>> for ConstDecimals<20>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<21>
impl Add<ConstDecimals<47>> for ConstDecimals<21>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<22>
impl Add<ConstDecimals<47>> for ConstDecimals<22>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<23>
impl Add<ConstDecimals<47>> for ConstDecimals<23>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<24>
impl Add<ConstDecimals<47>> for ConstDecimals<24>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<25>
impl Add<ConstDecimals<47>> for ConstDecimals<25>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<26>
impl Add<ConstDecimals<47>> for ConstDecimals<26>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<27>
impl Add<ConstDecimals<47>> for ConstDecimals<27>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<28>
impl Add<ConstDecimals<47>> for ConstDecimals<28>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<29>
impl Add<ConstDecimals<47>> for ConstDecimals<29>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<30>
impl Add<ConstDecimals<47>> for ConstDecimals<30>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<31>
impl Add<ConstDecimals<47>> for ConstDecimals<31>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<32>
impl Add<ConstDecimals<47>> for ConstDecimals<32>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<33>
impl Add<ConstDecimals<47>> for ConstDecimals<33>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<34>
impl Add<ConstDecimals<47>> for ConstDecimals<34>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<35>
impl Add<ConstDecimals<47>> for ConstDecimals<35>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<36>
impl Add<ConstDecimals<47>> for ConstDecimals<36>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<37>
impl Add<ConstDecimals<47>> for ConstDecimals<37>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<38>
impl Add<ConstDecimals<47>> for ConstDecimals<38>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<39>
impl Add<ConstDecimals<47>> for ConstDecimals<39>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<40>
impl Add<ConstDecimals<47>> for ConstDecimals<40>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<41>
impl Add<ConstDecimals<47>> for ConstDecimals<41>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<42>
impl Add<ConstDecimals<47>> for ConstDecimals<42>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<43>
impl Add<ConstDecimals<47>> for ConstDecimals<43>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<44>
impl Add<ConstDecimals<47>> for ConstDecimals<44>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<45>
impl Add<ConstDecimals<47>> for ConstDecimals<45>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<46>
impl Add<ConstDecimals<47>> for ConstDecimals<46>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<48>
impl Add<ConstDecimals<47>> for ConstDecimals<48>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<49>
impl Add<ConstDecimals<47>> for ConstDecimals<49>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<50>
impl Add<ConstDecimals<47>> for ConstDecimals<50>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<51>
impl Add<ConstDecimals<47>> for ConstDecimals<51>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<52>
impl Add<ConstDecimals<47>> for ConstDecimals<52>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<53>
impl Add<ConstDecimals<47>> for ConstDecimals<53>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<54>
impl Add<ConstDecimals<47>> for ConstDecimals<54>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<55>
impl Add<ConstDecimals<47>> for ConstDecimals<55>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<56>
impl Add<ConstDecimals<47>> for ConstDecimals<56>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<57>
impl Add<ConstDecimals<47>> for ConstDecimals<57>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<58>
impl Add<ConstDecimals<47>> for ConstDecimals<58>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<59>
impl Add<ConstDecimals<47>> for ConstDecimals<59>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<60>
impl Add<ConstDecimals<47>> for ConstDecimals<60>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<61>
impl Add<ConstDecimals<47>> for ConstDecimals<61>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<62>
impl Add<ConstDecimals<47>> for ConstDecimals<62>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<63>
impl Add<ConstDecimals<47>> for ConstDecimals<63>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<47>> for ConstDecimals<64>
impl Add<ConstDecimals<47>> for ConstDecimals<64>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<0>
impl Add<ConstDecimals<48>> for ConstDecimals<0>
type Output = ConstDecimals<48>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<1>
impl Add<ConstDecimals<48>> for ConstDecimals<1>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<2>
impl Add<ConstDecimals<48>> for ConstDecimals<2>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<3>
impl Add<ConstDecimals<48>> for ConstDecimals<3>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<4>
impl Add<ConstDecimals<48>> for ConstDecimals<4>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<5>
impl Add<ConstDecimals<48>> for ConstDecimals<5>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<6>
impl Add<ConstDecimals<48>> for ConstDecimals<6>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<7>
impl Add<ConstDecimals<48>> for ConstDecimals<7>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<8>
impl Add<ConstDecimals<48>> for ConstDecimals<8>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<9>
impl Add<ConstDecimals<48>> for ConstDecimals<9>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<10>
impl Add<ConstDecimals<48>> for ConstDecimals<10>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<11>
impl Add<ConstDecimals<48>> for ConstDecimals<11>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<12>
impl Add<ConstDecimals<48>> for ConstDecimals<12>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<13>
impl Add<ConstDecimals<48>> for ConstDecimals<13>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<14>
impl Add<ConstDecimals<48>> for ConstDecimals<14>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<15>
impl Add<ConstDecimals<48>> for ConstDecimals<15>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<16>
impl Add<ConstDecimals<48>> for ConstDecimals<16>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<17>
impl Add<ConstDecimals<48>> for ConstDecimals<17>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<18>
impl Add<ConstDecimals<48>> for ConstDecimals<18>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<19>
impl Add<ConstDecimals<48>> for ConstDecimals<19>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<20>
impl Add<ConstDecimals<48>> for ConstDecimals<20>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<21>
impl Add<ConstDecimals<48>> for ConstDecimals<21>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<22>
impl Add<ConstDecimals<48>> for ConstDecimals<22>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<23>
impl Add<ConstDecimals<48>> for ConstDecimals<23>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<24>
impl Add<ConstDecimals<48>> for ConstDecimals<24>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<25>
impl Add<ConstDecimals<48>> for ConstDecimals<25>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<26>
impl Add<ConstDecimals<48>> for ConstDecimals<26>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<27>
impl Add<ConstDecimals<48>> for ConstDecimals<27>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<28>
impl Add<ConstDecimals<48>> for ConstDecimals<28>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<29>
impl Add<ConstDecimals<48>> for ConstDecimals<29>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<30>
impl Add<ConstDecimals<48>> for ConstDecimals<30>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<31>
impl Add<ConstDecimals<48>> for ConstDecimals<31>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<32>
impl Add<ConstDecimals<48>> for ConstDecimals<32>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<33>
impl Add<ConstDecimals<48>> for ConstDecimals<33>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<34>
impl Add<ConstDecimals<48>> for ConstDecimals<34>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<35>
impl Add<ConstDecimals<48>> for ConstDecimals<35>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<36>
impl Add<ConstDecimals<48>> for ConstDecimals<36>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<37>
impl Add<ConstDecimals<48>> for ConstDecimals<37>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<38>
impl Add<ConstDecimals<48>> for ConstDecimals<38>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<39>
impl Add<ConstDecimals<48>> for ConstDecimals<39>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<40>
impl Add<ConstDecimals<48>> for ConstDecimals<40>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<41>
impl Add<ConstDecimals<48>> for ConstDecimals<41>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<42>
impl Add<ConstDecimals<48>> for ConstDecimals<42>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<43>
impl Add<ConstDecimals<48>> for ConstDecimals<43>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<44>
impl Add<ConstDecimals<48>> for ConstDecimals<44>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<45>
impl Add<ConstDecimals<48>> for ConstDecimals<45>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<46>
impl Add<ConstDecimals<48>> for ConstDecimals<46>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<47>
impl Add<ConstDecimals<48>> for ConstDecimals<47>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<49>
impl Add<ConstDecimals<48>> for ConstDecimals<49>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<50>
impl Add<ConstDecimals<48>> for ConstDecimals<50>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<51>
impl Add<ConstDecimals<48>> for ConstDecimals<51>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<52>
impl Add<ConstDecimals<48>> for ConstDecimals<52>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<53>
impl Add<ConstDecimals<48>> for ConstDecimals<53>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<54>
impl Add<ConstDecimals<48>> for ConstDecimals<54>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<55>
impl Add<ConstDecimals<48>> for ConstDecimals<55>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<56>
impl Add<ConstDecimals<48>> for ConstDecimals<56>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<57>
impl Add<ConstDecimals<48>> for ConstDecimals<57>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<58>
impl Add<ConstDecimals<48>> for ConstDecimals<58>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<59>
impl Add<ConstDecimals<48>> for ConstDecimals<59>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<60>
impl Add<ConstDecimals<48>> for ConstDecimals<60>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<61>
impl Add<ConstDecimals<48>> for ConstDecimals<61>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<62>
impl Add<ConstDecimals<48>> for ConstDecimals<62>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<63>
impl Add<ConstDecimals<48>> for ConstDecimals<63>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<48>> for ConstDecimals<64>
impl Add<ConstDecimals<48>> for ConstDecimals<64>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<0>
impl Add<ConstDecimals<49>> for ConstDecimals<0>
type Output = ConstDecimals<49>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<1>
impl Add<ConstDecimals<49>> for ConstDecimals<1>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<2>
impl Add<ConstDecimals<49>> for ConstDecimals<2>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<3>
impl Add<ConstDecimals<49>> for ConstDecimals<3>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<4>
impl Add<ConstDecimals<49>> for ConstDecimals<4>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<5>
impl Add<ConstDecimals<49>> for ConstDecimals<5>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<6>
impl Add<ConstDecimals<49>> for ConstDecimals<6>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<7>
impl Add<ConstDecimals<49>> for ConstDecimals<7>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<8>
impl Add<ConstDecimals<49>> for ConstDecimals<8>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<9>
impl Add<ConstDecimals<49>> for ConstDecimals<9>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<10>
impl Add<ConstDecimals<49>> for ConstDecimals<10>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<11>
impl Add<ConstDecimals<49>> for ConstDecimals<11>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<12>
impl Add<ConstDecimals<49>> for ConstDecimals<12>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<13>
impl Add<ConstDecimals<49>> for ConstDecimals<13>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<14>
impl Add<ConstDecimals<49>> for ConstDecimals<14>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<15>
impl Add<ConstDecimals<49>> for ConstDecimals<15>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<16>
impl Add<ConstDecimals<49>> for ConstDecimals<16>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<17>
impl Add<ConstDecimals<49>> for ConstDecimals<17>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<18>
impl Add<ConstDecimals<49>> for ConstDecimals<18>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<19>
impl Add<ConstDecimals<49>> for ConstDecimals<19>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<20>
impl Add<ConstDecimals<49>> for ConstDecimals<20>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<21>
impl Add<ConstDecimals<49>> for ConstDecimals<21>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<22>
impl Add<ConstDecimals<49>> for ConstDecimals<22>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<23>
impl Add<ConstDecimals<49>> for ConstDecimals<23>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<24>
impl Add<ConstDecimals<49>> for ConstDecimals<24>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<25>
impl Add<ConstDecimals<49>> for ConstDecimals<25>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<26>
impl Add<ConstDecimals<49>> for ConstDecimals<26>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<27>
impl Add<ConstDecimals<49>> for ConstDecimals<27>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<28>
impl Add<ConstDecimals<49>> for ConstDecimals<28>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<29>
impl Add<ConstDecimals<49>> for ConstDecimals<29>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<30>
impl Add<ConstDecimals<49>> for ConstDecimals<30>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<31>
impl Add<ConstDecimals<49>> for ConstDecimals<31>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<32>
impl Add<ConstDecimals<49>> for ConstDecimals<32>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<33>
impl Add<ConstDecimals<49>> for ConstDecimals<33>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<34>
impl Add<ConstDecimals<49>> for ConstDecimals<34>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<35>
impl Add<ConstDecimals<49>> for ConstDecimals<35>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<36>
impl Add<ConstDecimals<49>> for ConstDecimals<36>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<37>
impl Add<ConstDecimals<49>> for ConstDecimals<37>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<38>
impl Add<ConstDecimals<49>> for ConstDecimals<38>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<39>
impl Add<ConstDecimals<49>> for ConstDecimals<39>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<40>
impl Add<ConstDecimals<49>> for ConstDecimals<40>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<41>
impl Add<ConstDecimals<49>> for ConstDecimals<41>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<42>
impl Add<ConstDecimals<49>> for ConstDecimals<42>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<43>
impl Add<ConstDecimals<49>> for ConstDecimals<43>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<44>
impl Add<ConstDecimals<49>> for ConstDecimals<44>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<45>
impl Add<ConstDecimals<49>> for ConstDecimals<45>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<46>
impl Add<ConstDecimals<49>> for ConstDecimals<46>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<47>
impl Add<ConstDecimals<49>> for ConstDecimals<47>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<48>
impl Add<ConstDecimals<49>> for ConstDecimals<48>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<50>
impl Add<ConstDecimals<49>> for ConstDecimals<50>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<51>
impl Add<ConstDecimals<49>> for ConstDecimals<51>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<52>
impl Add<ConstDecimals<49>> for ConstDecimals<52>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<53>
impl Add<ConstDecimals<49>> for ConstDecimals<53>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<54>
impl Add<ConstDecimals<49>> for ConstDecimals<54>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<55>
impl Add<ConstDecimals<49>> for ConstDecimals<55>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<56>
impl Add<ConstDecimals<49>> for ConstDecimals<56>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<57>
impl Add<ConstDecimals<49>> for ConstDecimals<57>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<58>
impl Add<ConstDecimals<49>> for ConstDecimals<58>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<59>
impl Add<ConstDecimals<49>> for ConstDecimals<59>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<60>
impl Add<ConstDecimals<49>> for ConstDecimals<60>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<61>
impl Add<ConstDecimals<49>> for ConstDecimals<61>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<62>
impl Add<ConstDecimals<49>> for ConstDecimals<62>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<63>
impl Add<ConstDecimals<49>> for ConstDecimals<63>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<49>> for ConstDecimals<64>
impl Add<ConstDecimals<49>> for ConstDecimals<64>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<0>
impl Add<ConstDecimals<50>> for ConstDecimals<0>
type Output = ConstDecimals<50>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<1>
impl Add<ConstDecimals<50>> for ConstDecimals<1>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<2>
impl Add<ConstDecimals<50>> for ConstDecimals<2>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<3>
impl Add<ConstDecimals<50>> for ConstDecimals<3>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<4>
impl Add<ConstDecimals<50>> for ConstDecimals<4>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<5>
impl Add<ConstDecimals<50>> for ConstDecimals<5>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<6>
impl Add<ConstDecimals<50>> for ConstDecimals<6>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<7>
impl Add<ConstDecimals<50>> for ConstDecimals<7>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<8>
impl Add<ConstDecimals<50>> for ConstDecimals<8>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<9>
impl Add<ConstDecimals<50>> for ConstDecimals<9>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<10>
impl Add<ConstDecimals<50>> for ConstDecimals<10>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<11>
impl Add<ConstDecimals<50>> for ConstDecimals<11>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<12>
impl Add<ConstDecimals<50>> for ConstDecimals<12>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<13>
impl Add<ConstDecimals<50>> for ConstDecimals<13>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<14>
impl Add<ConstDecimals<50>> for ConstDecimals<14>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<15>
impl Add<ConstDecimals<50>> for ConstDecimals<15>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<16>
impl Add<ConstDecimals<50>> for ConstDecimals<16>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<17>
impl Add<ConstDecimals<50>> for ConstDecimals<17>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<18>
impl Add<ConstDecimals<50>> for ConstDecimals<18>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<19>
impl Add<ConstDecimals<50>> for ConstDecimals<19>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<20>
impl Add<ConstDecimals<50>> for ConstDecimals<20>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<21>
impl Add<ConstDecimals<50>> for ConstDecimals<21>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<22>
impl Add<ConstDecimals<50>> for ConstDecimals<22>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<23>
impl Add<ConstDecimals<50>> for ConstDecimals<23>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<24>
impl Add<ConstDecimals<50>> for ConstDecimals<24>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<25>
impl Add<ConstDecimals<50>> for ConstDecimals<25>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<26>
impl Add<ConstDecimals<50>> for ConstDecimals<26>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<27>
impl Add<ConstDecimals<50>> for ConstDecimals<27>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<28>
impl Add<ConstDecimals<50>> for ConstDecimals<28>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<29>
impl Add<ConstDecimals<50>> for ConstDecimals<29>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<30>
impl Add<ConstDecimals<50>> for ConstDecimals<30>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<31>
impl Add<ConstDecimals<50>> for ConstDecimals<31>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<32>
impl Add<ConstDecimals<50>> for ConstDecimals<32>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<33>
impl Add<ConstDecimals<50>> for ConstDecimals<33>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<34>
impl Add<ConstDecimals<50>> for ConstDecimals<34>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<35>
impl Add<ConstDecimals<50>> for ConstDecimals<35>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<36>
impl Add<ConstDecimals<50>> for ConstDecimals<36>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<37>
impl Add<ConstDecimals<50>> for ConstDecimals<37>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<38>
impl Add<ConstDecimals<50>> for ConstDecimals<38>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<39>
impl Add<ConstDecimals<50>> for ConstDecimals<39>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<40>
impl Add<ConstDecimals<50>> for ConstDecimals<40>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<41>
impl Add<ConstDecimals<50>> for ConstDecimals<41>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<42>
impl Add<ConstDecimals<50>> for ConstDecimals<42>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<43>
impl Add<ConstDecimals<50>> for ConstDecimals<43>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<44>
impl Add<ConstDecimals<50>> for ConstDecimals<44>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<45>
impl Add<ConstDecimals<50>> for ConstDecimals<45>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<46>
impl Add<ConstDecimals<50>> for ConstDecimals<46>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<47>
impl Add<ConstDecimals<50>> for ConstDecimals<47>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<48>
impl Add<ConstDecimals<50>> for ConstDecimals<48>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<49>
impl Add<ConstDecimals<50>> for ConstDecimals<49>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<51>
impl Add<ConstDecimals<50>> for ConstDecimals<51>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<52>
impl Add<ConstDecimals<50>> for ConstDecimals<52>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<53>
impl Add<ConstDecimals<50>> for ConstDecimals<53>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<54>
impl Add<ConstDecimals<50>> for ConstDecimals<54>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<55>
impl Add<ConstDecimals<50>> for ConstDecimals<55>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<56>
impl Add<ConstDecimals<50>> for ConstDecimals<56>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<57>
impl Add<ConstDecimals<50>> for ConstDecimals<57>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<58>
impl Add<ConstDecimals<50>> for ConstDecimals<58>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<59>
impl Add<ConstDecimals<50>> for ConstDecimals<59>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<60>
impl Add<ConstDecimals<50>> for ConstDecimals<60>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<61>
impl Add<ConstDecimals<50>> for ConstDecimals<61>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<62>
impl Add<ConstDecimals<50>> for ConstDecimals<62>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<63>
impl Add<ConstDecimals<50>> for ConstDecimals<63>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<50>> for ConstDecimals<64>
impl Add<ConstDecimals<50>> for ConstDecimals<64>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<0>
impl Add<ConstDecimals<51>> for ConstDecimals<0>
type Output = ConstDecimals<51>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<1>
impl Add<ConstDecimals<51>> for ConstDecimals<1>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<2>
impl Add<ConstDecimals<51>> for ConstDecimals<2>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<3>
impl Add<ConstDecimals<51>> for ConstDecimals<3>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<4>
impl Add<ConstDecimals<51>> for ConstDecimals<4>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<5>
impl Add<ConstDecimals<51>> for ConstDecimals<5>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<6>
impl Add<ConstDecimals<51>> for ConstDecimals<6>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<7>
impl Add<ConstDecimals<51>> for ConstDecimals<7>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<8>
impl Add<ConstDecimals<51>> for ConstDecimals<8>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<9>
impl Add<ConstDecimals<51>> for ConstDecimals<9>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<10>
impl Add<ConstDecimals<51>> for ConstDecimals<10>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<11>
impl Add<ConstDecimals<51>> for ConstDecimals<11>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<12>
impl Add<ConstDecimals<51>> for ConstDecimals<12>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<13>
impl Add<ConstDecimals<51>> for ConstDecimals<13>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<14>
impl Add<ConstDecimals<51>> for ConstDecimals<14>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<15>
impl Add<ConstDecimals<51>> for ConstDecimals<15>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<16>
impl Add<ConstDecimals<51>> for ConstDecimals<16>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<17>
impl Add<ConstDecimals<51>> for ConstDecimals<17>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<18>
impl Add<ConstDecimals<51>> for ConstDecimals<18>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<19>
impl Add<ConstDecimals<51>> for ConstDecimals<19>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<20>
impl Add<ConstDecimals<51>> for ConstDecimals<20>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<21>
impl Add<ConstDecimals<51>> for ConstDecimals<21>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<22>
impl Add<ConstDecimals<51>> for ConstDecimals<22>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<23>
impl Add<ConstDecimals<51>> for ConstDecimals<23>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<24>
impl Add<ConstDecimals<51>> for ConstDecimals<24>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<25>
impl Add<ConstDecimals<51>> for ConstDecimals<25>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<26>
impl Add<ConstDecimals<51>> for ConstDecimals<26>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<27>
impl Add<ConstDecimals<51>> for ConstDecimals<27>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<28>
impl Add<ConstDecimals<51>> for ConstDecimals<28>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<29>
impl Add<ConstDecimals<51>> for ConstDecimals<29>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<30>
impl Add<ConstDecimals<51>> for ConstDecimals<30>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<31>
impl Add<ConstDecimals<51>> for ConstDecimals<31>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<32>
impl Add<ConstDecimals<51>> for ConstDecimals<32>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<33>
impl Add<ConstDecimals<51>> for ConstDecimals<33>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<34>
impl Add<ConstDecimals<51>> for ConstDecimals<34>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<35>
impl Add<ConstDecimals<51>> for ConstDecimals<35>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<36>
impl Add<ConstDecimals<51>> for ConstDecimals<36>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<37>
impl Add<ConstDecimals<51>> for ConstDecimals<37>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<38>
impl Add<ConstDecimals<51>> for ConstDecimals<38>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<39>
impl Add<ConstDecimals<51>> for ConstDecimals<39>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<40>
impl Add<ConstDecimals<51>> for ConstDecimals<40>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<41>
impl Add<ConstDecimals<51>> for ConstDecimals<41>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<42>
impl Add<ConstDecimals<51>> for ConstDecimals<42>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<43>
impl Add<ConstDecimals<51>> for ConstDecimals<43>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<44>
impl Add<ConstDecimals<51>> for ConstDecimals<44>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<45>
impl Add<ConstDecimals<51>> for ConstDecimals<45>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<46>
impl Add<ConstDecimals<51>> for ConstDecimals<46>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<47>
impl Add<ConstDecimals<51>> for ConstDecimals<47>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<48>
impl Add<ConstDecimals<51>> for ConstDecimals<48>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<49>
impl Add<ConstDecimals<51>> for ConstDecimals<49>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<50>
impl Add<ConstDecimals<51>> for ConstDecimals<50>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<52>
impl Add<ConstDecimals<51>> for ConstDecimals<52>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<53>
impl Add<ConstDecimals<51>> for ConstDecimals<53>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<54>
impl Add<ConstDecimals<51>> for ConstDecimals<54>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<55>
impl Add<ConstDecimals<51>> for ConstDecimals<55>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<56>
impl Add<ConstDecimals<51>> for ConstDecimals<56>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<57>
impl Add<ConstDecimals<51>> for ConstDecimals<57>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<58>
impl Add<ConstDecimals<51>> for ConstDecimals<58>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<59>
impl Add<ConstDecimals<51>> for ConstDecimals<59>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<60>
impl Add<ConstDecimals<51>> for ConstDecimals<60>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<61>
impl Add<ConstDecimals<51>> for ConstDecimals<61>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<62>
impl Add<ConstDecimals<51>> for ConstDecimals<62>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<63>
impl Add<ConstDecimals<51>> for ConstDecimals<63>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<51>> for ConstDecimals<64>
impl Add<ConstDecimals<51>> for ConstDecimals<64>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<0>
impl Add<ConstDecimals<52>> for ConstDecimals<0>
type Output = ConstDecimals<52>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<1>
impl Add<ConstDecimals<52>> for ConstDecimals<1>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<2>
impl Add<ConstDecimals<52>> for ConstDecimals<2>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<3>
impl Add<ConstDecimals<52>> for ConstDecimals<3>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<4>
impl Add<ConstDecimals<52>> for ConstDecimals<4>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<5>
impl Add<ConstDecimals<52>> for ConstDecimals<5>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<6>
impl Add<ConstDecimals<52>> for ConstDecimals<6>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<7>
impl Add<ConstDecimals<52>> for ConstDecimals<7>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<8>
impl Add<ConstDecimals<52>> for ConstDecimals<8>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<9>
impl Add<ConstDecimals<52>> for ConstDecimals<9>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<10>
impl Add<ConstDecimals<52>> for ConstDecimals<10>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<11>
impl Add<ConstDecimals<52>> for ConstDecimals<11>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<12>
impl Add<ConstDecimals<52>> for ConstDecimals<12>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<13>
impl Add<ConstDecimals<52>> for ConstDecimals<13>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<14>
impl Add<ConstDecimals<52>> for ConstDecimals<14>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<15>
impl Add<ConstDecimals<52>> for ConstDecimals<15>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<16>
impl Add<ConstDecimals<52>> for ConstDecimals<16>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<17>
impl Add<ConstDecimals<52>> for ConstDecimals<17>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<18>
impl Add<ConstDecimals<52>> for ConstDecimals<18>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<19>
impl Add<ConstDecimals<52>> for ConstDecimals<19>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<20>
impl Add<ConstDecimals<52>> for ConstDecimals<20>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<21>
impl Add<ConstDecimals<52>> for ConstDecimals<21>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<22>
impl Add<ConstDecimals<52>> for ConstDecimals<22>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<23>
impl Add<ConstDecimals<52>> for ConstDecimals<23>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<24>
impl Add<ConstDecimals<52>> for ConstDecimals<24>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<25>
impl Add<ConstDecimals<52>> for ConstDecimals<25>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<26>
impl Add<ConstDecimals<52>> for ConstDecimals<26>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<27>
impl Add<ConstDecimals<52>> for ConstDecimals<27>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<28>
impl Add<ConstDecimals<52>> for ConstDecimals<28>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<29>
impl Add<ConstDecimals<52>> for ConstDecimals<29>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<30>
impl Add<ConstDecimals<52>> for ConstDecimals<30>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<31>
impl Add<ConstDecimals<52>> for ConstDecimals<31>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<32>
impl Add<ConstDecimals<52>> for ConstDecimals<32>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<33>
impl Add<ConstDecimals<52>> for ConstDecimals<33>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<34>
impl Add<ConstDecimals<52>> for ConstDecimals<34>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<35>
impl Add<ConstDecimals<52>> for ConstDecimals<35>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<36>
impl Add<ConstDecimals<52>> for ConstDecimals<36>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<37>
impl Add<ConstDecimals<52>> for ConstDecimals<37>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<38>
impl Add<ConstDecimals<52>> for ConstDecimals<38>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<39>
impl Add<ConstDecimals<52>> for ConstDecimals<39>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<40>
impl Add<ConstDecimals<52>> for ConstDecimals<40>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<41>
impl Add<ConstDecimals<52>> for ConstDecimals<41>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<42>
impl Add<ConstDecimals<52>> for ConstDecimals<42>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<43>
impl Add<ConstDecimals<52>> for ConstDecimals<43>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<44>
impl Add<ConstDecimals<52>> for ConstDecimals<44>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<45>
impl Add<ConstDecimals<52>> for ConstDecimals<45>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<46>
impl Add<ConstDecimals<52>> for ConstDecimals<46>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<47>
impl Add<ConstDecimals<52>> for ConstDecimals<47>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<48>
impl Add<ConstDecimals<52>> for ConstDecimals<48>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<49>
impl Add<ConstDecimals<52>> for ConstDecimals<49>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<50>
impl Add<ConstDecimals<52>> for ConstDecimals<50>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<51>
impl Add<ConstDecimals<52>> for ConstDecimals<51>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<53>
impl Add<ConstDecimals<52>> for ConstDecimals<53>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<54>
impl Add<ConstDecimals<52>> for ConstDecimals<54>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<55>
impl Add<ConstDecimals<52>> for ConstDecimals<55>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<56>
impl Add<ConstDecimals<52>> for ConstDecimals<56>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<57>
impl Add<ConstDecimals<52>> for ConstDecimals<57>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<58>
impl Add<ConstDecimals<52>> for ConstDecimals<58>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<59>
impl Add<ConstDecimals<52>> for ConstDecimals<59>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<60>
impl Add<ConstDecimals<52>> for ConstDecimals<60>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<61>
impl Add<ConstDecimals<52>> for ConstDecimals<61>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<62>
impl Add<ConstDecimals<52>> for ConstDecimals<62>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<63>
impl Add<ConstDecimals<52>> for ConstDecimals<63>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<52>> for ConstDecimals<64>
impl Add<ConstDecimals<52>> for ConstDecimals<64>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<0>
impl Add<ConstDecimals<53>> for ConstDecimals<0>
type Output = ConstDecimals<53>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<1>
impl Add<ConstDecimals<53>> for ConstDecimals<1>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<2>
impl Add<ConstDecimals<53>> for ConstDecimals<2>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<3>
impl Add<ConstDecimals<53>> for ConstDecimals<3>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<4>
impl Add<ConstDecimals<53>> for ConstDecimals<4>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<5>
impl Add<ConstDecimals<53>> for ConstDecimals<5>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<6>
impl Add<ConstDecimals<53>> for ConstDecimals<6>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<7>
impl Add<ConstDecimals<53>> for ConstDecimals<7>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<8>
impl Add<ConstDecimals<53>> for ConstDecimals<8>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<9>
impl Add<ConstDecimals<53>> for ConstDecimals<9>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<10>
impl Add<ConstDecimals<53>> for ConstDecimals<10>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<11>
impl Add<ConstDecimals<53>> for ConstDecimals<11>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<12>
impl Add<ConstDecimals<53>> for ConstDecimals<12>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<13>
impl Add<ConstDecimals<53>> for ConstDecimals<13>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<14>
impl Add<ConstDecimals<53>> for ConstDecimals<14>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<15>
impl Add<ConstDecimals<53>> for ConstDecimals<15>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<16>
impl Add<ConstDecimals<53>> for ConstDecimals<16>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<17>
impl Add<ConstDecimals<53>> for ConstDecimals<17>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<18>
impl Add<ConstDecimals<53>> for ConstDecimals<18>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<19>
impl Add<ConstDecimals<53>> for ConstDecimals<19>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<20>
impl Add<ConstDecimals<53>> for ConstDecimals<20>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<21>
impl Add<ConstDecimals<53>> for ConstDecimals<21>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<22>
impl Add<ConstDecimals<53>> for ConstDecimals<22>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<23>
impl Add<ConstDecimals<53>> for ConstDecimals<23>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<24>
impl Add<ConstDecimals<53>> for ConstDecimals<24>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<25>
impl Add<ConstDecimals<53>> for ConstDecimals<25>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<26>
impl Add<ConstDecimals<53>> for ConstDecimals<26>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<27>
impl Add<ConstDecimals<53>> for ConstDecimals<27>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<28>
impl Add<ConstDecimals<53>> for ConstDecimals<28>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<29>
impl Add<ConstDecimals<53>> for ConstDecimals<29>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<30>
impl Add<ConstDecimals<53>> for ConstDecimals<30>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<31>
impl Add<ConstDecimals<53>> for ConstDecimals<31>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<32>
impl Add<ConstDecimals<53>> for ConstDecimals<32>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<33>
impl Add<ConstDecimals<53>> for ConstDecimals<33>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<34>
impl Add<ConstDecimals<53>> for ConstDecimals<34>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<35>
impl Add<ConstDecimals<53>> for ConstDecimals<35>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<36>
impl Add<ConstDecimals<53>> for ConstDecimals<36>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<37>
impl Add<ConstDecimals<53>> for ConstDecimals<37>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<38>
impl Add<ConstDecimals<53>> for ConstDecimals<38>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<39>
impl Add<ConstDecimals<53>> for ConstDecimals<39>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<40>
impl Add<ConstDecimals<53>> for ConstDecimals<40>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<41>
impl Add<ConstDecimals<53>> for ConstDecimals<41>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<42>
impl Add<ConstDecimals<53>> for ConstDecimals<42>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<43>
impl Add<ConstDecimals<53>> for ConstDecimals<43>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<44>
impl Add<ConstDecimals<53>> for ConstDecimals<44>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<45>
impl Add<ConstDecimals<53>> for ConstDecimals<45>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<46>
impl Add<ConstDecimals<53>> for ConstDecimals<46>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<47>
impl Add<ConstDecimals<53>> for ConstDecimals<47>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<48>
impl Add<ConstDecimals<53>> for ConstDecimals<48>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<49>
impl Add<ConstDecimals<53>> for ConstDecimals<49>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<50>
impl Add<ConstDecimals<53>> for ConstDecimals<50>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<51>
impl Add<ConstDecimals<53>> for ConstDecimals<51>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<52>
impl Add<ConstDecimals<53>> for ConstDecimals<52>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<54>
impl Add<ConstDecimals<53>> for ConstDecimals<54>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<55>
impl Add<ConstDecimals<53>> for ConstDecimals<55>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<56>
impl Add<ConstDecimals<53>> for ConstDecimals<56>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<57>
impl Add<ConstDecimals<53>> for ConstDecimals<57>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<58>
impl Add<ConstDecimals<53>> for ConstDecimals<58>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<59>
impl Add<ConstDecimals<53>> for ConstDecimals<59>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<60>
impl Add<ConstDecimals<53>> for ConstDecimals<60>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<61>
impl Add<ConstDecimals<53>> for ConstDecimals<61>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<62>
impl Add<ConstDecimals<53>> for ConstDecimals<62>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<63>
impl Add<ConstDecimals<53>> for ConstDecimals<63>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<53>> for ConstDecimals<64>
impl Add<ConstDecimals<53>> for ConstDecimals<64>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<0>
impl Add<ConstDecimals<54>> for ConstDecimals<0>
type Output = ConstDecimals<54>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<1>
impl Add<ConstDecimals<54>> for ConstDecimals<1>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<2>
impl Add<ConstDecimals<54>> for ConstDecimals<2>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<3>
impl Add<ConstDecimals<54>> for ConstDecimals<3>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<4>
impl Add<ConstDecimals<54>> for ConstDecimals<4>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<5>
impl Add<ConstDecimals<54>> for ConstDecimals<5>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<6>
impl Add<ConstDecimals<54>> for ConstDecimals<6>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<7>
impl Add<ConstDecimals<54>> for ConstDecimals<7>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<8>
impl Add<ConstDecimals<54>> for ConstDecimals<8>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<9>
impl Add<ConstDecimals<54>> for ConstDecimals<9>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<10>
impl Add<ConstDecimals<54>> for ConstDecimals<10>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<11>
impl Add<ConstDecimals<54>> for ConstDecimals<11>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<12>
impl Add<ConstDecimals<54>> for ConstDecimals<12>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<13>
impl Add<ConstDecimals<54>> for ConstDecimals<13>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<14>
impl Add<ConstDecimals<54>> for ConstDecimals<14>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<15>
impl Add<ConstDecimals<54>> for ConstDecimals<15>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<16>
impl Add<ConstDecimals<54>> for ConstDecimals<16>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<17>
impl Add<ConstDecimals<54>> for ConstDecimals<17>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<18>
impl Add<ConstDecimals<54>> for ConstDecimals<18>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<19>
impl Add<ConstDecimals<54>> for ConstDecimals<19>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<20>
impl Add<ConstDecimals<54>> for ConstDecimals<20>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<21>
impl Add<ConstDecimals<54>> for ConstDecimals<21>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<22>
impl Add<ConstDecimals<54>> for ConstDecimals<22>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<23>
impl Add<ConstDecimals<54>> for ConstDecimals<23>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<24>
impl Add<ConstDecimals<54>> for ConstDecimals<24>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<25>
impl Add<ConstDecimals<54>> for ConstDecimals<25>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<26>
impl Add<ConstDecimals<54>> for ConstDecimals<26>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<27>
impl Add<ConstDecimals<54>> for ConstDecimals<27>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<28>
impl Add<ConstDecimals<54>> for ConstDecimals<28>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<29>
impl Add<ConstDecimals<54>> for ConstDecimals<29>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<30>
impl Add<ConstDecimals<54>> for ConstDecimals<30>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<31>
impl Add<ConstDecimals<54>> for ConstDecimals<31>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<32>
impl Add<ConstDecimals<54>> for ConstDecimals<32>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<33>
impl Add<ConstDecimals<54>> for ConstDecimals<33>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<34>
impl Add<ConstDecimals<54>> for ConstDecimals<34>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<35>
impl Add<ConstDecimals<54>> for ConstDecimals<35>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<36>
impl Add<ConstDecimals<54>> for ConstDecimals<36>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<37>
impl Add<ConstDecimals<54>> for ConstDecimals<37>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<38>
impl Add<ConstDecimals<54>> for ConstDecimals<38>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<39>
impl Add<ConstDecimals<54>> for ConstDecimals<39>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<40>
impl Add<ConstDecimals<54>> for ConstDecimals<40>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<41>
impl Add<ConstDecimals<54>> for ConstDecimals<41>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<42>
impl Add<ConstDecimals<54>> for ConstDecimals<42>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<43>
impl Add<ConstDecimals<54>> for ConstDecimals<43>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<44>
impl Add<ConstDecimals<54>> for ConstDecimals<44>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<45>
impl Add<ConstDecimals<54>> for ConstDecimals<45>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<46>
impl Add<ConstDecimals<54>> for ConstDecimals<46>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<47>
impl Add<ConstDecimals<54>> for ConstDecimals<47>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<48>
impl Add<ConstDecimals<54>> for ConstDecimals<48>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<49>
impl Add<ConstDecimals<54>> for ConstDecimals<49>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<50>
impl Add<ConstDecimals<54>> for ConstDecimals<50>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<51>
impl Add<ConstDecimals<54>> for ConstDecimals<51>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<52>
impl Add<ConstDecimals<54>> for ConstDecimals<52>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<53>
impl Add<ConstDecimals<54>> for ConstDecimals<53>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<55>
impl Add<ConstDecimals<54>> for ConstDecimals<55>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<56>
impl Add<ConstDecimals<54>> for ConstDecimals<56>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<57>
impl Add<ConstDecimals<54>> for ConstDecimals<57>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<58>
impl Add<ConstDecimals<54>> for ConstDecimals<58>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<59>
impl Add<ConstDecimals<54>> for ConstDecimals<59>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<60>
impl Add<ConstDecimals<54>> for ConstDecimals<60>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<61>
impl Add<ConstDecimals<54>> for ConstDecimals<61>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<62>
impl Add<ConstDecimals<54>> for ConstDecimals<62>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<63>
impl Add<ConstDecimals<54>> for ConstDecimals<63>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<54>> for ConstDecimals<64>
impl Add<ConstDecimals<54>> for ConstDecimals<64>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<0>
impl Add<ConstDecimals<55>> for ConstDecimals<0>
type Output = ConstDecimals<55>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<1>
impl Add<ConstDecimals<55>> for ConstDecimals<1>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<2>
impl Add<ConstDecimals<55>> for ConstDecimals<2>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<3>
impl Add<ConstDecimals<55>> for ConstDecimals<3>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<4>
impl Add<ConstDecimals<55>> for ConstDecimals<4>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<5>
impl Add<ConstDecimals<55>> for ConstDecimals<5>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<6>
impl Add<ConstDecimals<55>> for ConstDecimals<6>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<7>
impl Add<ConstDecimals<55>> for ConstDecimals<7>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<8>
impl Add<ConstDecimals<55>> for ConstDecimals<8>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<9>
impl Add<ConstDecimals<55>> for ConstDecimals<9>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<10>
impl Add<ConstDecimals<55>> for ConstDecimals<10>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<11>
impl Add<ConstDecimals<55>> for ConstDecimals<11>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<12>
impl Add<ConstDecimals<55>> for ConstDecimals<12>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<13>
impl Add<ConstDecimals<55>> for ConstDecimals<13>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<14>
impl Add<ConstDecimals<55>> for ConstDecimals<14>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<15>
impl Add<ConstDecimals<55>> for ConstDecimals<15>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<16>
impl Add<ConstDecimals<55>> for ConstDecimals<16>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<17>
impl Add<ConstDecimals<55>> for ConstDecimals<17>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<18>
impl Add<ConstDecimals<55>> for ConstDecimals<18>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<19>
impl Add<ConstDecimals<55>> for ConstDecimals<19>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<20>
impl Add<ConstDecimals<55>> for ConstDecimals<20>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<21>
impl Add<ConstDecimals<55>> for ConstDecimals<21>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<22>
impl Add<ConstDecimals<55>> for ConstDecimals<22>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<23>
impl Add<ConstDecimals<55>> for ConstDecimals<23>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<24>
impl Add<ConstDecimals<55>> for ConstDecimals<24>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<25>
impl Add<ConstDecimals<55>> for ConstDecimals<25>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<26>
impl Add<ConstDecimals<55>> for ConstDecimals<26>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<27>
impl Add<ConstDecimals<55>> for ConstDecimals<27>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<28>
impl Add<ConstDecimals<55>> for ConstDecimals<28>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<29>
impl Add<ConstDecimals<55>> for ConstDecimals<29>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<30>
impl Add<ConstDecimals<55>> for ConstDecimals<30>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<31>
impl Add<ConstDecimals<55>> for ConstDecimals<31>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<32>
impl Add<ConstDecimals<55>> for ConstDecimals<32>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<33>
impl Add<ConstDecimals<55>> for ConstDecimals<33>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<34>
impl Add<ConstDecimals<55>> for ConstDecimals<34>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<35>
impl Add<ConstDecimals<55>> for ConstDecimals<35>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<36>
impl Add<ConstDecimals<55>> for ConstDecimals<36>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<37>
impl Add<ConstDecimals<55>> for ConstDecimals<37>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<38>
impl Add<ConstDecimals<55>> for ConstDecimals<38>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<39>
impl Add<ConstDecimals<55>> for ConstDecimals<39>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<40>
impl Add<ConstDecimals<55>> for ConstDecimals<40>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<41>
impl Add<ConstDecimals<55>> for ConstDecimals<41>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<42>
impl Add<ConstDecimals<55>> for ConstDecimals<42>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<43>
impl Add<ConstDecimals<55>> for ConstDecimals<43>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<44>
impl Add<ConstDecimals<55>> for ConstDecimals<44>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<45>
impl Add<ConstDecimals<55>> for ConstDecimals<45>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<46>
impl Add<ConstDecimals<55>> for ConstDecimals<46>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<47>
impl Add<ConstDecimals<55>> for ConstDecimals<47>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<48>
impl Add<ConstDecimals<55>> for ConstDecimals<48>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<49>
impl Add<ConstDecimals<55>> for ConstDecimals<49>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<50>
impl Add<ConstDecimals<55>> for ConstDecimals<50>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<51>
impl Add<ConstDecimals<55>> for ConstDecimals<51>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<52>
impl Add<ConstDecimals<55>> for ConstDecimals<52>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<53>
impl Add<ConstDecimals<55>> for ConstDecimals<53>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<54>
impl Add<ConstDecimals<55>> for ConstDecimals<54>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<56>
impl Add<ConstDecimals<55>> for ConstDecimals<56>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<57>
impl Add<ConstDecimals<55>> for ConstDecimals<57>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<58>
impl Add<ConstDecimals<55>> for ConstDecimals<58>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<59>
impl Add<ConstDecimals<55>> for ConstDecimals<59>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<60>
impl Add<ConstDecimals<55>> for ConstDecimals<60>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<61>
impl Add<ConstDecimals<55>> for ConstDecimals<61>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<62>
impl Add<ConstDecimals<55>> for ConstDecimals<62>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<63>
impl Add<ConstDecimals<55>> for ConstDecimals<63>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<55>> for ConstDecimals<64>
impl Add<ConstDecimals<55>> for ConstDecimals<64>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<0>
impl Add<ConstDecimals<56>> for ConstDecimals<0>
type Output = ConstDecimals<56>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<1>
impl Add<ConstDecimals<56>> for ConstDecimals<1>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<2>
impl Add<ConstDecimals<56>> for ConstDecimals<2>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<3>
impl Add<ConstDecimals<56>> for ConstDecimals<3>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<4>
impl Add<ConstDecimals<56>> for ConstDecimals<4>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<5>
impl Add<ConstDecimals<56>> for ConstDecimals<5>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<6>
impl Add<ConstDecimals<56>> for ConstDecimals<6>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<7>
impl Add<ConstDecimals<56>> for ConstDecimals<7>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<8>
impl Add<ConstDecimals<56>> for ConstDecimals<8>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<9>
impl Add<ConstDecimals<56>> for ConstDecimals<9>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<10>
impl Add<ConstDecimals<56>> for ConstDecimals<10>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<11>
impl Add<ConstDecimals<56>> for ConstDecimals<11>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<12>
impl Add<ConstDecimals<56>> for ConstDecimals<12>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<13>
impl Add<ConstDecimals<56>> for ConstDecimals<13>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<14>
impl Add<ConstDecimals<56>> for ConstDecimals<14>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<15>
impl Add<ConstDecimals<56>> for ConstDecimals<15>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<16>
impl Add<ConstDecimals<56>> for ConstDecimals<16>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<17>
impl Add<ConstDecimals<56>> for ConstDecimals<17>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<18>
impl Add<ConstDecimals<56>> for ConstDecimals<18>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<19>
impl Add<ConstDecimals<56>> for ConstDecimals<19>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<20>
impl Add<ConstDecimals<56>> for ConstDecimals<20>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<21>
impl Add<ConstDecimals<56>> for ConstDecimals<21>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<22>
impl Add<ConstDecimals<56>> for ConstDecimals<22>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<23>
impl Add<ConstDecimals<56>> for ConstDecimals<23>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<24>
impl Add<ConstDecimals<56>> for ConstDecimals<24>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<25>
impl Add<ConstDecimals<56>> for ConstDecimals<25>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<26>
impl Add<ConstDecimals<56>> for ConstDecimals<26>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<27>
impl Add<ConstDecimals<56>> for ConstDecimals<27>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<28>
impl Add<ConstDecimals<56>> for ConstDecimals<28>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<29>
impl Add<ConstDecimals<56>> for ConstDecimals<29>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<30>
impl Add<ConstDecimals<56>> for ConstDecimals<30>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<31>
impl Add<ConstDecimals<56>> for ConstDecimals<31>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<32>
impl Add<ConstDecimals<56>> for ConstDecimals<32>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<33>
impl Add<ConstDecimals<56>> for ConstDecimals<33>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<34>
impl Add<ConstDecimals<56>> for ConstDecimals<34>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<35>
impl Add<ConstDecimals<56>> for ConstDecimals<35>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<36>
impl Add<ConstDecimals<56>> for ConstDecimals<36>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<37>
impl Add<ConstDecimals<56>> for ConstDecimals<37>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<38>
impl Add<ConstDecimals<56>> for ConstDecimals<38>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<39>
impl Add<ConstDecimals<56>> for ConstDecimals<39>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<40>
impl Add<ConstDecimals<56>> for ConstDecimals<40>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<41>
impl Add<ConstDecimals<56>> for ConstDecimals<41>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<42>
impl Add<ConstDecimals<56>> for ConstDecimals<42>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<43>
impl Add<ConstDecimals<56>> for ConstDecimals<43>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<44>
impl Add<ConstDecimals<56>> for ConstDecimals<44>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<45>
impl Add<ConstDecimals<56>> for ConstDecimals<45>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<46>
impl Add<ConstDecimals<56>> for ConstDecimals<46>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<47>
impl Add<ConstDecimals<56>> for ConstDecimals<47>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<48>
impl Add<ConstDecimals<56>> for ConstDecimals<48>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<49>
impl Add<ConstDecimals<56>> for ConstDecimals<49>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<50>
impl Add<ConstDecimals<56>> for ConstDecimals<50>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<51>
impl Add<ConstDecimals<56>> for ConstDecimals<51>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<52>
impl Add<ConstDecimals<56>> for ConstDecimals<52>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<53>
impl Add<ConstDecimals<56>> for ConstDecimals<53>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<54>
impl Add<ConstDecimals<56>> for ConstDecimals<54>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<55>
impl Add<ConstDecimals<56>> for ConstDecimals<55>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<57>
impl Add<ConstDecimals<56>> for ConstDecimals<57>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<58>
impl Add<ConstDecimals<56>> for ConstDecimals<58>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<59>
impl Add<ConstDecimals<56>> for ConstDecimals<59>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<60>
impl Add<ConstDecimals<56>> for ConstDecimals<60>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<61>
impl Add<ConstDecimals<56>> for ConstDecimals<61>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<62>
impl Add<ConstDecimals<56>> for ConstDecimals<62>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<63>
impl Add<ConstDecimals<56>> for ConstDecimals<63>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<56>> for ConstDecimals<64>
impl Add<ConstDecimals<56>> for ConstDecimals<64>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<0>
impl Add<ConstDecimals<57>> for ConstDecimals<0>
type Output = ConstDecimals<57>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<1>
impl Add<ConstDecimals<57>> for ConstDecimals<1>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<2>
impl Add<ConstDecimals<57>> for ConstDecimals<2>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<3>
impl Add<ConstDecimals<57>> for ConstDecimals<3>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<4>
impl Add<ConstDecimals<57>> for ConstDecimals<4>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<5>
impl Add<ConstDecimals<57>> for ConstDecimals<5>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<6>
impl Add<ConstDecimals<57>> for ConstDecimals<6>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<7>
impl Add<ConstDecimals<57>> for ConstDecimals<7>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<8>
impl Add<ConstDecimals<57>> for ConstDecimals<8>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<9>
impl Add<ConstDecimals<57>> for ConstDecimals<9>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<10>
impl Add<ConstDecimals<57>> for ConstDecimals<10>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<11>
impl Add<ConstDecimals<57>> for ConstDecimals<11>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<12>
impl Add<ConstDecimals<57>> for ConstDecimals<12>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<13>
impl Add<ConstDecimals<57>> for ConstDecimals<13>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<14>
impl Add<ConstDecimals<57>> for ConstDecimals<14>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<15>
impl Add<ConstDecimals<57>> for ConstDecimals<15>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<16>
impl Add<ConstDecimals<57>> for ConstDecimals<16>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<17>
impl Add<ConstDecimals<57>> for ConstDecimals<17>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<18>
impl Add<ConstDecimals<57>> for ConstDecimals<18>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<19>
impl Add<ConstDecimals<57>> for ConstDecimals<19>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<20>
impl Add<ConstDecimals<57>> for ConstDecimals<20>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<21>
impl Add<ConstDecimals<57>> for ConstDecimals<21>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<22>
impl Add<ConstDecimals<57>> for ConstDecimals<22>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<23>
impl Add<ConstDecimals<57>> for ConstDecimals<23>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<24>
impl Add<ConstDecimals<57>> for ConstDecimals<24>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<25>
impl Add<ConstDecimals<57>> for ConstDecimals<25>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<26>
impl Add<ConstDecimals<57>> for ConstDecimals<26>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<27>
impl Add<ConstDecimals<57>> for ConstDecimals<27>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<28>
impl Add<ConstDecimals<57>> for ConstDecimals<28>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<29>
impl Add<ConstDecimals<57>> for ConstDecimals<29>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<30>
impl Add<ConstDecimals<57>> for ConstDecimals<30>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<31>
impl Add<ConstDecimals<57>> for ConstDecimals<31>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<32>
impl Add<ConstDecimals<57>> for ConstDecimals<32>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<33>
impl Add<ConstDecimals<57>> for ConstDecimals<33>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<34>
impl Add<ConstDecimals<57>> for ConstDecimals<34>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<35>
impl Add<ConstDecimals<57>> for ConstDecimals<35>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<36>
impl Add<ConstDecimals<57>> for ConstDecimals<36>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<37>
impl Add<ConstDecimals<57>> for ConstDecimals<37>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<38>
impl Add<ConstDecimals<57>> for ConstDecimals<38>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<39>
impl Add<ConstDecimals<57>> for ConstDecimals<39>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<40>
impl Add<ConstDecimals<57>> for ConstDecimals<40>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<41>
impl Add<ConstDecimals<57>> for ConstDecimals<41>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<42>
impl Add<ConstDecimals<57>> for ConstDecimals<42>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<43>
impl Add<ConstDecimals<57>> for ConstDecimals<43>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<44>
impl Add<ConstDecimals<57>> for ConstDecimals<44>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<45>
impl Add<ConstDecimals<57>> for ConstDecimals<45>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<46>
impl Add<ConstDecimals<57>> for ConstDecimals<46>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<47>
impl Add<ConstDecimals<57>> for ConstDecimals<47>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<48>
impl Add<ConstDecimals<57>> for ConstDecimals<48>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<49>
impl Add<ConstDecimals<57>> for ConstDecimals<49>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<50>
impl Add<ConstDecimals<57>> for ConstDecimals<50>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<51>
impl Add<ConstDecimals<57>> for ConstDecimals<51>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<52>
impl Add<ConstDecimals<57>> for ConstDecimals<52>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<53>
impl Add<ConstDecimals<57>> for ConstDecimals<53>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<54>
impl Add<ConstDecimals<57>> for ConstDecimals<54>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<55>
impl Add<ConstDecimals<57>> for ConstDecimals<55>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<56>
impl Add<ConstDecimals<57>> for ConstDecimals<56>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<58>
impl Add<ConstDecimals<57>> for ConstDecimals<58>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<59>
impl Add<ConstDecimals<57>> for ConstDecimals<59>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<60>
impl Add<ConstDecimals<57>> for ConstDecimals<60>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<61>
impl Add<ConstDecimals<57>> for ConstDecimals<61>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<62>
impl Add<ConstDecimals<57>> for ConstDecimals<62>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<63>
impl Add<ConstDecimals<57>> for ConstDecimals<63>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<57>> for ConstDecimals<64>
impl Add<ConstDecimals<57>> for ConstDecimals<64>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<0>
impl Add<ConstDecimals<58>> for ConstDecimals<0>
type Output = ConstDecimals<58>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<1>
impl Add<ConstDecimals<58>> for ConstDecimals<1>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<2>
impl Add<ConstDecimals<58>> for ConstDecimals<2>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<3>
impl Add<ConstDecimals<58>> for ConstDecimals<3>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<4>
impl Add<ConstDecimals<58>> for ConstDecimals<4>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<5>
impl Add<ConstDecimals<58>> for ConstDecimals<5>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<6>
impl Add<ConstDecimals<58>> for ConstDecimals<6>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<7>
impl Add<ConstDecimals<58>> for ConstDecimals<7>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<8>
impl Add<ConstDecimals<58>> for ConstDecimals<8>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<9>
impl Add<ConstDecimals<58>> for ConstDecimals<9>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<10>
impl Add<ConstDecimals<58>> for ConstDecimals<10>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<11>
impl Add<ConstDecimals<58>> for ConstDecimals<11>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<12>
impl Add<ConstDecimals<58>> for ConstDecimals<12>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<13>
impl Add<ConstDecimals<58>> for ConstDecimals<13>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<14>
impl Add<ConstDecimals<58>> for ConstDecimals<14>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<15>
impl Add<ConstDecimals<58>> for ConstDecimals<15>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<16>
impl Add<ConstDecimals<58>> for ConstDecimals<16>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<17>
impl Add<ConstDecimals<58>> for ConstDecimals<17>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<18>
impl Add<ConstDecimals<58>> for ConstDecimals<18>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<19>
impl Add<ConstDecimals<58>> for ConstDecimals<19>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<20>
impl Add<ConstDecimals<58>> for ConstDecimals<20>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<21>
impl Add<ConstDecimals<58>> for ConstDecimals<21>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<22>
impl Add<ConstDecimals<58>> for ConstDecimals<22>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<23>
impl Add<ConstDecimals<58>> for ConstDecimals<23>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<24>
impl Add<ConstDecimals<58>> for ConstDecimals<24>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<25>
impl Add<ConstDecimals<58>> for ConstDecimals<25>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<26>
impl Add<ConstDecimals<58>> for ConstDecimals<26>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<27>
impl Add<ConstDecimals<58>> for ConstDecimals<27>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<28>
impl Add<ConstDecimals<58>> for ConstDecimals<28>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<29>
impl Add<ConstDecimals<58>> for ConstDecimals<29>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<30>
impl Add<ConstDecimals<58>> for ConstDecimals<30>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<31>
impl Add<ConstDecimals<58>> for ConstDecimals<31>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<32>
impl Add<ConstDecimals<58>> for ConstDecimals<32>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<33>
impl Add<ConstDecimals<58>> for ConstDecimals<33>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<34>
impl Add<ConstDecimals<58>> for ConstDecimals<34>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<35>
impl Add<ConstDecimals<58>> for ConstDecimals<35>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<36>
impl Add<ConstDecimals<58>> for ConstDecimals<36>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<37>
impl Add<ConstDecimals<58>> for ConstDecimals<37>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<38>
impl Add<ConstDecimals<58>> for ConstDecimals<38>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<39>
impl Add<ConstDecimals<58>> for ConstDecimals<39>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<40>
impl Add<ConstDecimals<58>> for ConstDecimals<40>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<41>
impl Add<ConstDecimals<58>> for ConstDecimals<41>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<42>
impl Add<ConstDecimals<58>> for ConstDecimals<42>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<43>
impl Add<ConstDecimals<58>> for ConstDecimals<43>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<44>
impl Add<ConstDecimals<58>> for ConstDecimals<44>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<45>
impl Add<ConstDecimals<58>> for ConstDecimals<45>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<46>
impl Add<ConstDecimals<58>> for ConstDecimals<46>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<47>
impl Add<ConstDecimals<58>> for ConstDecimals<47>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<48>
impl Add<ConstDecimals<58>> for ConstDecimals<48>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<49>
impl Add<ConstDecimals<58>> for ConstDecimals<49>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<50>
impl Add<ConstDecimals<58>> for ConstDecimals<50>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<51>
impl Add<ConstDecimals<58>> for ConstDecimals<51>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<52>
impl Add<ConstDecimals<58>> for ConstDecimals<52>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<53>
impl Add<ConstDecimals<58>> for ConstDecimals<53>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<54>
impl Add<ConstDecimals<58>> for ConstDecimals<54>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<55>
impl Add<ConstDecimals<58>> for ConstDecimals<55>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<56>
impl Add<ConstDecimals<58>> for ConstDecimals<56>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<57>
impl Add<ConstDecimals<58>> for ConstDecimals<57>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<59>
impl Add<ConstDecimals<58>> for ConstDecimals<59>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<60>
impl Add<ConstDecimals<58>> for ConstDecimals<60>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<61>
impl Add<ConstDecimals<58>> for ConstDecimals<61>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<62>
impl Add<ConstDecimals<58>> for ConstDecimals<62>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<63>
impl Add<ConstDecimals<58>> for ConstDecimals<63>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<58>> for ConstDecimals<64>
impl Add<ConstDecimals<58>> for ConstDecimals<64>
type Output = ConstDecimals<122>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<0>
impl Add<ConstDecimals<59>> for ConstDecimals<0>
type Output = ConstDecimals<59>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<1>
impl Add<ConstDecimals<59>> for ConstDecimals<1>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<2>
impl Add<ConstDecimals<59>> for ConstDecimals<2>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<3>
impl Add<ConstDecimals<59>> for ConstDecimals<3>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<4>
impl Add<ConstDecimals<59>> for ConstDecimals<4>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<5>
impl Add<ConstDecimals<59>> for ConstDecimals<5>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<6>
impl Add<ConstDecimals<59>> for ConstDecimals<6>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<7>
impl Add<ConstDecimals<59>> for ConstDecimals<7>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<8>
impl Add<ConstDecimals<59>> for ConstDecimals<8>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<9>
impl Add<ConstDecimals<59>> for ConstDecimals<9>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<10>
impl Add<ConstDecimals<59>> for ConstDecimals<10>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<11>
impl Add<ConstDecimals<59>> for ConstDecimals<11>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<12>
impl Add<ConstDecimals<59>> for ConstDecimals<12>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<13>
impl Add<ConstDecimals<59>> for ConstDecimals<13>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<14>
impl Add<ConstDecimals<59>> for ConstDecimals<14>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<15>
impl Add<ConstDecimals<59>> for ConstDecimals<15>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<16>
impl Add<ConstDecimals<59>> for ConstDecimals<16>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<17>
impl Add<ConstDecimals<59>> for ConstDecimals<17>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<18>
impl Add<ConstDecimals<59>> for ConstDecimals<18>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<19>
impl Add<ConstDecimals<59>> for ConstDecimals<19>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<20>
impl Add<ConstDecimals<59>> for ConstDecimals<20>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<21>
impl Add<ConstDecimals<59>> for ConstDecimals<21>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<22>
impl Add<ConstDecimals<59>> for ConstDecimals<22>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<23>
impl Add<ConstDecimals<59>> for ConstDecimals<23>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<24>
impl Add<ConstDecimals<59>> for ConstDecimals<24>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<25>
impl Add<ConstDecimals<59>> for ConstDecimals<25>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<26>
impl Add<ConstDecimals<59>> for ConstDecimals<26>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<27>
impl Add<ConstDecimals<59>> for ConstDecimals<27>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<28>
impl Add<ConstDecimals<59>> for ConstDecimals<28>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<29>
impl Add<ConstDecimals<59>> for ConstDecimals<29>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<30>
impl Add<ConstDecimals<59>> for ConstDecimals<30>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<31>
impl Add<ConstDecimals<59>> for ConstDecimals<31>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<32>
impl Add<ConstDecimals<59>> for ConstDecimals<32>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<33>
impl Add<ConstDecimals<59>> for ConstDecimals<33>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<34>
impl Add<ConstDecimals<59>> for ConstDecimals<34>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<35>
impl Add<ConstDecimals<59>> for ConstDecimals<35>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<36>
impl Add<ConstDecimals<59>> for ConstDecimals<36>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<37>
impl Add<ConstDecimals<59>> for ConstDecimals<37>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<38>
impl Add<ConstDecimals<59>> for ConstDecimals<38>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<39>
impl Add<ConstDecimals<59>> for ConstDecimals<39>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<40>
impl Add<ConstDecimals<59>> for ConstDecimals<40>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<41>
impl Add<ConstDecimals<59>> for ConstDecimals<41>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<42>
impl Add<ConstDecimals<59>> for ConstDecimals<42>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<43>
impl Add<ConstDecimals<59>> for ConstDecimals<43>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<44>
impl Add<ConstDecimals<59>> for ConstDecimals<44>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<45>
impl Add<ConstDecimals<59>> for ConstDecimals<45>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<46>
impl Add<ConstDecimals<59>> for ConstDecimals<46>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<47>
impl Add<ConstDecimals<59>> for ConstDecimals<47>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<48>
impl Add<ConstDecimals<59>> for ConstDecimals<48>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<49>
impl Add<ConstDecimals<59>> for ConstDecimals<49>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<50>
impl Add<ConstDecimals<59>> for ConstDecimals<50>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<51>
impl Add<ConstDecimals<59>> for ConstDecimals<51>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<52>
impl Add<ConstDecimals<59>> for ConstDecimals<52>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<53>
impl Add<ConstDecimals<59>> for ConstDecimals<53>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<54>
impl Add<ConstDecimals<59>> for ConstDecimals<54>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<55>
impl Add<ConstDecimals<59>> for ConstDecimals<55>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<56>
impl Add<ConstDecimals<59>> for ConstDecimals<56>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<57>
impl Add<ConstDecimals<59>> for ConstDecimals<57>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<58>
impl Add<ConstDecimals<59>> for ConstDecimals<58>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<60>
impl Add<ConstDecimals<59>> for ConstDecimals<60>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<61>
impl Add<ConstDecimals<59>> for ConstDecimals<61>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<62>
impl Add<ConstDecimals<59>> for ConstDecimals<62>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<63>
impl Add<ConstDecimals<59>> for ConstDecimals<63>
type Output = ConstDecimals<122>
Source§impl Add<ConstDecimals<59>> for ConstDecimals<64>
impl Add<ConstDecimals<59>> for ConstDecimals<64>
type Output = ConstDecimals<123>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<0>
impl Add<ConstDecimals<60>> for ConstDecimals<0>
type Output = ConstDecimals<60>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<1>
impl Add<ConstDecimals<60>> for ConstDecimals<1>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<2>
impl Add<ConstDecimals<60>> for ConstDecimals<2>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<3>
impl Add<ConstDecimals<60>> for ConstDecimals<3>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<4>
impl Add<ConstDecimals<60>> for ConstDecimals<4>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<5>
impl Add<ConstDecimals<60>> for ConstDecimals<5>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<6>
impl Add<ConstDecimals<60>> for ConstDecimals<6>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<7>
impl Add<ConstDecimals<60>> for ConstDecimals<7>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<8>
impl Add<ConstDecimals<60>> for ConstDecimals<8>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<9>
impl Add<ConstDecimals<60>> for ConstDecimals<9>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<10>
impl Add<ConstDecimals<60>> for ConstDecimals<10>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<11>
impl Add<ConstDecimals<60>> for ConstDecimals<11>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<12>
impl Add<ConstDecimals<60>> for ConstDecimals<12>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<13>
impl Add<ConstDecimals<60>> for ConstDecimals<13>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<14>
impl Add<ConstDecimals<60>> for ConstDecimals<14>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<15>
impl Add<ConstDecimals<60>> for ConstDecimals<15>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<16>
impl Add<ConstDecimals<60>> for ConstDecimals<16>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<17>
impl Add<ConstDecimals<60>> for ConstDecimals<17>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<18>
impl Add<ConstDecimals<60>> for ConstDecimals<18>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<19>
impl Add<ConstDecimals<60>> for ConstDecimals<19>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<20>
impl Add<ConstDecimals<60>> for ConstDecimals<20>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<21>
impl Add<ConstDecimals<60>> for ConstDecimals<21>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<22>
impl Add<ConstDecimals<60>> for ConstDecimals<22>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<23>
impl Add<ConstDecimals<60>> for ConstDecimals<23>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<24>
impl Add<ConstDecimals<60>> for ConstDecimals<24>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<25>
impl Add<ConstDecimals<60>> for ConstDecimals<25>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<26>
impl Add<ConstDecimals<60>> for ConstDecimals<26>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<27>
impl Add<ConstDecimals<60>> for ConstDecimals<27>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<28>
impl Add<ConstDecimals<60>> for ConstDecimals<28>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<29>
impl Add<ConstDecimals<60>> for ConstDecimals<29>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<30>
impl Add<ConstDecimals<60>> for ConstDecimals<30>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<31>
impl Add<ConstDecimals<60>> for ConstDecimals<31>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<32>
impl Add<ConstDecimals<60>> for ConstDecimals<32>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<33>
impl Add<ConstDecimals<60>> for ConstDecimals<33>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<34>
impl Add<ConstDecimals<60>> for ConstDecimals<34>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<35>
impl Add<ConstDecimals<60>> for ConstDecimals<35>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<36>
impl Add<ConstDecimals<60>> for ConstDecimals<36>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<37>
impl Add<ConstDecimals<60>> for ConstDecimals<37>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<38>
impl Add<ConstDecimals<60>> for ConstDecimals<38>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<39>
impl Add<ConstDecimals<60>> for ConstDecimals<39>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<40>
impl Add<ConstDecimals<60>> for ConstDecimals<40>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<41>
impl Add<ConstDecimals<60>> for ConstDecimals<41>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<42>
impl Add<ConstDecimals<60>> for ConstDecimals<42>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<43>
impl Add<ConstDecimals<60>> for ConstDecimals<43>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<44>
impl Add<ConstDecimals<60>> for ConstDecimals<44>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<45>
impl Add<ConstDecimals<60>> for ConstDecimals<45>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<46>
impl Add<ConstDecimals<60>> for ConstDecimals<46>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<47>
impl Add<ConstDecimals<60>> for ConstDecimals<47>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<48>
impl Add<ConstDecimals<60>> for ConstDecimals<48>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<49>
impl Add<ConstDecimals<60>> for ConstDecimals<49>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<50>
impl Add<ConstDecimals<60>> for ConstDecimals<50>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<51>
impl Add<ConstDecimals<60>> for ConstDecimals<51>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<52>
impl Add<ConstDecimals<60>> for ConstDecimals<52>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<53>
impl Add<ConstDecimals<60>> for ConstDecimals<53>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<54>
impl Add<ConstDecimals<60>> for ConstDecimals<54>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<55>
impl Add<ConstDecimals<60>> for ConstDecimals<55>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<56>
impl Add<ConstDecimals<60>> for ConstDecimals<56>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<57>
impl Add<ConstDecimals<60>> for ConstDecimals<57>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<58>
impl Add<ConstDecimals<60>> for ConstDecimals<58>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<59>
impl Add<ConstDecimals<60>> for ConstDecimals<59>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<61>
impl Add<ConstDecimals<60>> for ConstDecimals<61>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<62>
impl Add<ConstDecimals<60>> for ConstDecimals<62>
type Output = ConstDecimals<122>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<63>
impl Add<ConstDecimals<60>> for ConstDecimals<63>
type Output = ConstDecimals<123>
Source§impl Add<ConstDecimals<60>> for ConstDecimals<64>
impl Add<ConstDecimals<60>> for ConstDecimals<64>
type Output = ConstDecimals<124>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<0>
impl Add<ConstDecimals<61>> for ConstDecimals<0>
type Output = ConstDecimals<61>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<1>
impl Add<ConstDecimals<61>> for ConstDecimals<1>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<2>
impl Add<ConstDecimals<61>> for ConstDecimals<2>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<3>
impl Add<ConstDecimals<61>> for ConstDecimals<3>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<4>
impl Add<ConstDecimals<61>> for ConstDecimals<4>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<5>
impl Add<ConstDecimals<61>> for ConstDecimals<5>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<6>
impl Add<ConstDecimals<61>> for ConstDecimals<6>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<7>
impl Add<ConstDecimals<61>> for ConstDecimals<7>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<8>
impl Add<ConstDecimals<61>> for ConstDecimals<8>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<9>
impl Add<ConstDecimals<61>> for ConstDecimals<9>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<10>
impl Add<ConstDecimals<61>> for ConstDecimals<10>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<11>
impl Add<ConstDecimals<61>> for ConstDecimals<11>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<12>
impl Add<ConstDecimals<61>> for ConstDecimals<12>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<13>
impl Add<ConstDecimals<61>> for ConstDecimals<13>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<14>
impl Add<ConstDecimals<61>> for ConstDecimals<14>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<15>
impl Add<ConstDecimals<61>> for ConstDecimals<15>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<16>
impl Add<ConstDecimals<61>> for ConstDecimals<16>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<17>
impl Add<ConstDecimals<61>> for ConstDecimals<17>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<18>
impl Add<ConstDecimals<61>> for ConstDecimals<18>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<19>
impl Add<ConstDecimals<61>> for ConstDecimals<19>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<20>
impl Add<ConstDecimals<61>> for ConstDecimals<20>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<21>
impl Add<ConstDecimals<61>> for ConstDecimals<21>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<22>
impl Add<ConstDecimals<61>> for ConstDecimals<22>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<23>
impl Add<ConstDecimals<61>> for ConstDecimals<23>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<24>
impl Add<ConstDecimals<61>> for ConstDecimals<24>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<25>
impl Add<ConstDecimals<61>> for ConstDecimals<25>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<26>
impl Add<ConstDecimals<61>> for ConstDecimals<26>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<27>
impl Add<ConstDecimals<61>> for ConstDecimals<27>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<28>
impl Add<ConstDecimals<61>> for ConstDecimals<28>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<29>
impl Add<ConstDecimals<61>> for ConstDecimals<29>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<30>
impl Add<ConstDecimals<61>> for ConstDecimals<30>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<31>
impl Add<ConstDecimals<61>> for ConstDecimals<31>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<32>
impl Add<ConstDecimals<61>> for ConstDecimals<32>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<33>
impl Add<ConstDecimals<61>> for ConstDecimals<33>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<34>
impl Add<ConstDecimals<61>> for ConstDecimals<34>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<35>
impl Add<ConstDecimals<61>> for ConstDecimals<35>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<36>
impl Add<ConstDecimals<61>> for ConstDecimals<36>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<37>
impl Add<ConstDecimals<61>> for ConstDecimals<37>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<38>
impl Add<ConstDecimals<61>> for ConstDecimals<38>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<39>
impl Add<ConstDecimals<61>> for ConstDecimals<39>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<40>
impl Add<ConstDecimals<61>> for ConstDecimals<40>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<41>
impl Add<ConstDecimals<61>> for ConstDecimals<41>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<42>
impl Add<ConstDecimals<61>> for ConstDecimals<42>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<43>
impl Add<ConstDecimals<61>> for ConstDecimals<43>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<44>
impl Add<ConstDecimals<61>> for ConstDecimals<44>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<45>
impl Add<ConstDecimals<61>> for ConstDecimals<45>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<46>
impl Add<ConstDecimals<61>> for ConstDecimals<46>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<47>
impl Add<ConstDecimals<61>> for ConstDecimals<47>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<48>
impl Add<ConstDecimals<61>> for ConstDecimals<48>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<49>
impl Add<ConstDecimals<61>> for ConstDecimals<49>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<50>
impl Add<ConstDecimals<61>> for ConstDecimals<50>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<51>
impl Add<ConstDecimals<61>> for ConstDecimals<51>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<52>
impl Add<ConstDecimals<61>> for ConstDecimals<52>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<53>
impl Add<ConstDecimals<61>> for ConstDecimals<53>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<54>
impl Add<ConstDecimals<61>> for ConstDecimals<54>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<55>
impl Add<ConstDecimals<61>> for ConstDecimals<55>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<56>
impl Add<ConstDecimals<61>> for ConstDecimals<56>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<57>
impl Add<ConstDecimals<61>> for ConstDecimals<57>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<58>
impl Add<ConstDecimals<61>> for ConstDecimals<58>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<59>
impl Add<ConstDecimals<61>> for ConstDecimals<59>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<60>
impl Add<ConstDecimals<61>> for ConstDecimals<60>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<62>
impl Add<ConstDecimals<61>> for ConstDecimals<62>
type Output = ConstDecimals<123>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<63>
impl Add<ConstDecimals<61>> for ConstDecimals<63>
type Output = ConstDecimals<124>
Source§impl Add<ConstDecimals<61>> for ConstDecimals<64>
impl Add<ConstDecimals<61>> for ConstDecimals<64>
type Output = ConstDecimals<125>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<0>
impl Add<ConstDecimals<62>> for ConstDecimals<0>
type Output = ConstDecimals<62>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<1>
impl Add<ConstDecimals<62>> for ConstDecimals<1>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<2>
impl Add<ConstDecimals<62>> for ConstDecimals<2>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<3>
impl Add<ConstDecimals<62>> for ConstDecimals<3>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<4>
impl Add<ConstDecimals<62>> for ConstDecimals<4>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<5>
impl Add<ConstDecimals<62>> for ConstDecimals<5>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<6>
impl Add<ConstDecimals<62>> for ConstDecimals<6>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<7>
impl Add<ConstDecimals<62>> for ConstDecimals<7>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<8>
impl Add<ConstDecimals<62>> for ConstDecimals<8>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<9>
impl Add<ConstDecimals<62>> for ConstDecimals<9>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<10>
impl Add<ConstDecimals<62>> for ConstDecimals<10>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<11>
impl Add<ConstDecimals<62>> for ConstDecimals<11>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<12>
impl Add<ConstDecimals<62>> for ConstDecimals<12>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<13>
impl Add<ConstDecimals<62>> for ConstDecimals<13>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<14>
impl Add<ConstDecimals<62>> for ConstDecimals<14>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<15>
impl Add<ConstDecimals<62>> for ConstDecimals<15>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<16>
impl Add<ConstDecimals<62>> for ConstDecimals<16>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<17>
impl Add<ConstDecimals<62>> for ConstDecimals<17>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<18>
impl Add<ConstDecimals<62>> for ConstDecimals<18>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<19>
impl Add<ConstDecimals<62>> for ConstDecimals<19>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<20>
impl Add<ConstDecimals<62>> for ConstDecimals<20>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<21>
impl Add<ConstDecimals<62>> for ConstDecimals<21>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<22>
impl Add<ConstDecimals<62>> for ConstDecimals<22>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<23>
impl Add<ConstDecimals<62>> for ConstDecimals<23>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<24>
impl Add<ConstDecimals<62>> for ConstDecimals<24>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<25>
impl Add<ConstDecimals<62>> for ConstDecimals<25>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<26>
impl Add<ConstDecimals<62>> for ConstDecimals<26>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<27>
impl Add<ConstDecimals<62>> for ConstDecimals<27>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<28>
impl Add<ConstDecimals<62>> for ConstDecimals<28>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<29>
impl Add<ConstDecimals<62>> for ConstDecimals<29>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<30>
impl Add<ConstDecimals<62>> for ConstDecimals<30>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<31>
impl Add<ConstDecimals<62>> for ConstDecimals<31>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<32>
impl Add<ConstDecimals<62>> for ConstDecimals<32>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<33>
impl Add<ConstDecimals<62>> for ConstDecimals<33>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<34>
impl Add<ConstDecimals<62>> for ConstDecimals<34>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<35>
impl Add<ConstDecimals<62>> for ConstDecimals<35>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<36>
impl Add<ConstDecimals<62>> for ConstDecimals<36>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<37>
impl Add<ConstDecimals<62>> for ConstDecimals<37>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<38>
impl Add<ConstDecimals<62>> for ConstDecimals<38>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<39>
impl Add<ConstDecimals<62>> for ConstDecimals<39>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<40>
impl Add<ConstDecimals<62>> for ConstDecimals<40>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<41>
impl Add<ConstDecimals<62>> for ConstDecimals<41>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<42>
impl Add<ConstDecimals<62>> for ConstDecimals<42>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<43>
impl Add<ConstDecimals<62>> for ConstDecimals<43>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<44>
impl Add<ConstDecimals<62>> for ConstDecimals<44>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<45>
impl Add<ConstDecimals<62>> for ConstDecimals<45>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<46>
impl Add<ConstDecimals<62>> for ConstDecimals<46>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<47>
impl Add<ConstDecimals<62>> for ConstDecimals<47>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<48>
impl Add<ConstDecimals<62>> for ConstDecimals<48>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<49>
impl Add<ConstDecimals<62>> for ConstDecimals<49>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<50>
impl Add<ConstDecimals<62>> for ConstDecimals<50>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<51>
impl Add<ConstDecimals<62>> for ConstDecimals<51>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<52>
impl Add<ConstDecimals<62>> for ConstDecimals<52>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<53>
impl Add<ConstDecimals<62>> for ConstDecimals<53>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<54>
impl Add<ConstDecimals<62>> for ConstDecimals<54>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<55>
impl Add<ConstDecimals<62>> for ConstDecimals<55>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<56>
impl Add<ConstDecimals<62>> for ConstDecimals<56>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<57>
impl Add<ConstDecimals<62>> for ConstDecimals<57>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<58>
impl Add<ConstDecimals<62>> for ConstDecimals<58>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<59>
impl Add<ConstDecimals<62>> for ConstDecimals<59>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<60>
impl Add<ConstDecimals<62>> for ConstDecimals<60>
type Output = ConstDecimals<122>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<61>
impl Add<ConstDecimals<62>> for ConstDecimals<61>
type Output = ConstDecimals<123>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<63>
impl Add<ConstDecimals<62>> for ConstDecimals<63>
type Output = ConstDecimals<125>
Source§impl Add<ConstDecimals<62>> for ConstDecimals<64>
impl Add<ConstDecimals<62>> for ConstDecimals<64>
type Output = ConstDecimals<126>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<0>
impl Add<ConstDecimals<63>> for ConstDecimals<0>
type Output = ConstDecimals<63>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<1>
impl Add<ConstDecimals<63>> for ConstDecimals<1>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<2>
impl Add<ConstDecimals<63>> for ConstDecimals<2>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<3>
impl Add<ConstDecimals<63>> for ConstDecimals<3>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<4>
impl Add<ConstDecimals<63>> for ConstDecimals<4>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<5>
impl Add<ConstDecimals<63>> for ConstDecimals<5>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<6>
impl Add<ConstDecimals<63>> for ConstDecimals<6>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<7>
impl Add<ConstDecimals<63>> for ConstDecimals<7>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<8>
impl Add<ConstDecimals<63>> for ConstDecimals<8>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<9>
impl Add<ConstDecimals<63>> for ConstDecimals<9>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<10>
impl Add<ConstDecimals<63>> for ConstDecimals<10>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<11>
impl Add<ConstDecimals<63>> for ConstDecimals<11>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<12>
impl Add<ConstDecimals<63>> for ConstDecimals<12>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<13>
impl Add<ConstDecimals<63>> for ConstDecimals<13>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<14>
impl Add<ConstDecimals<63>> for ConstDecimals<14>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<15>
impl Add<ConstDecimals<63>> for ConstDecimals<15>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<16>
impl Add<ConstDecimals<63>> for ConstDecimals<16>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<17>
impl Add<ConstDecimals<63>> for ConstDecimals<17>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<18>
impl Add<ConstDecimals<63>> for ConstDecimals<18>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<19>
impl Add<ConstDecimals<63>> for ConstDecimals<19>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<20>
impl Add<ConstDecimals<63>> for ConstDecimals<20>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<21>
impl Add<ConstDecimals<63>> for ConstDecimals<21>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<22>
impl Add<ConstDecimals<63>> for ConstDecimals<22>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<23>
impl Add<ConstDecimals<63>> for ConstDecimals<23>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<24>
impl Add<ConstDecimals<63>> for ConstDecimals<24>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<25>
impl Add<ConstDecimals<63>> for ConstDecimals<25>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<26>
impl Add<ConstDecimals<63>> for ConstDecimals<26>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<27>
impl Add<ConstDecimals<63>> for ConstDecimals<27>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<28>
impl Add<ConstDecimals<63>> for ConstDecimals<28>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<29>
impl Add<ConstDecimals<63>> for ConstDecimals<29>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<30>
impl Add<ConstDecimals<63>> for ConstDecimals<30>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<31>
impl Add<ConstDecimals<63>> for ConstDecimals<31>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<32>
impl Add<ConstDecimals<63>> for ConstDecimals<32>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<33>
impl Add<ConstDecimals<63>> for ConstDecimals<33>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<34>
impl Add<ConstDecimals<63>> for ConstDecimals<34>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<35>
impl Add<ConstDecimals<63>> for ConstDecimals<35>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<36>
impl Add<ConstDecimals<63>> for ConstDecimals<36>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<37>
impl Add<ConstDecimals<63>> for ConstDecimals<37>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<38>
impl Add<ConstDecimals<63>> for ConstDecimals<38>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<39>
impl Add<ConstDecimals<63>> for ConstDecimals<39>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<40>
impl Add<ConstDecimals<63>> for ConstDecimals<40>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<41>
impl Add<ConstDecimals<63>> for ConstDecimals<41>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<42>
impl Add<ConstDecimals<63>> for ConstDecimals<42>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<43>
impl Add<ConstDecimals<63>> for ConstDecimals<43>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<44>
impl Add<ConstDecimals<63>> for ConstDecimals<44>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<45>
impl Add<ConstDecimals<63>> for ConstDecimals<45>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<46>
impl Add<ConstDecimals<63>> for ConstDecimals<46>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<47>
impl Add<ConstDecimals<63>> for ConstDecimals<47>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<48>
impl Add<ConstDecimals<63>> for ConstDecimals<48>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<49>
impl Add<ConstDecimals<63>> for ConstDecimals<49>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<50>
impl Add<ConstDecimals<63>> for ConstDecimals<50>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<51>
impl Add<ConstDecimals<63>> for ConstDecimals<51>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<52>
impl Add<ConstDecimals<63>> for ConstDecimals<52>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<53>
impl Add<ConstDecimals<63>> for ConstDecimals<53>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<54>
impl Add<ConstDecimals<63>> for ConstDecimals<54>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<55>
impl Add<ConstDecimals<63>> for ConstDecimals<55>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<56>
impl Add<ConstDecimals<63>> for ConstDecimals<56>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<57>
impl Add<ConstDecimals<63>> for ConstDecimals<57>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<58>
impl Add<ConstDecimals<63>> for ConstDecimals<58>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<59>
impl Add<ConstDecimals<63>> for ConstDecimals<59>
type Output = ConstDecimals<122>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<60>
impl Add<ConstDecimals<63>> for ConstDecimals<60>
type Output = ConstDecimals<123>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<61>
impl Add<ConstDecimals<63>> for ConstDecimals<61>
type Output = ConstDecimals<124>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<62>
impl Add<ConstDecimals<63>> for ConstDecimals<62>
type Output = ConstDecimals<125>
Source§impl Add<ConstDecimals<63>> for ConstDecimals<64>
impl Add<ConstDecimals<63>> for ConstDecimals<64>
type Output = ConstDecimals<127>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<0>
impl Add<ConstDecimals<64>> for ConstDecimals<0>
type Output = ConstDecimals<64>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<1>
impl Add<ConstDecimals<64>> for ConstDecimals<1>
type Output = ConstDecimals<65>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<2>
impl Add<ConstDecimals<64>> for ConstDecimals<2>
type Output = ConstDecimals<66>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<3>
impl Add<ConstDecimals<64>> for ConstDecimals<3>
type Output = ConstDecimals<67>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<4>
impl Add<ConstDecimals<64>> for ConstDecimals<4>
type Output = ConstDecimals<68>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<5>
impl Add<ConstDecimals<64>> for ConstDecimals<5>
type Output = ConstDecimals<69>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<6>
impl Add<ConstDecimals<64>> for ConstDecimals<6>
type Output = ConstDecimals<70>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<7>
impl Add<ConstDecimals<64>> for ConstDecimals<7>
type Output = ConstDecimals<71>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<8>
impl Add<ConstDecimals<64>> for ConstDecimals<8>
type Output = ConstDecimals<72>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<9>
impl Add<ConstDecimals<64>> for ConstDecimals<9>
type Output = ConstDecimals<73>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<10>
impl Add<ConstDecimals<64>> for ConstDecimals<10>
type Output = ConstDecimals<74>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<11>
impl Add<ConstDecimals<64>> for ConstDecimals<11>
type Output = ConstDecimals<75>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<12>
impl Add<ConstDecimals<64>> for ConstDecimals<12>
type Output = ConstDecimals<76>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<13>
impl Add<ConstDecimals<64>> for ConstDecimals<13>
type Output = ConstDecimals<77>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<14>
impl Add<ConstDecimals<64>> for ConstDecimals<14>
type Output = ConstDecimals<78>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<15>
impl Add<ConstDecimals<64>> for ConstDecimals<15>
type Output = ConstDecimals<79>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<16>
impl Add<ConstDecimals<64>> for ConstDecimals<16>
type Output = ConstDecimals<80>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<17>
impl Add<ConstDecimals<64>> for ConstDecimals<17>
type Output = ConstDecimals<81>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<18>
impl Add<ConstDecimals<64>> for ConstDecimals<18>
type Output = ConstDecimals<82>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<19>
impl Add<ConstDecimals<64>> for ConstDecimals<19>
type Output = ConstDecimals<83>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<20>
impl Add<ConstDecimals<64>> for ConstDecimals<20>
type Output = ConstDecimals<84>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<21>
impl Add<ConstDecimals<64>> for ConstDecimals<21>
type Output = ConstDecimals<85>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<22>
impl Add<ConstDecimals<64>> for ConstDecimals<22>
type Output = ConstDecimals<86>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<23>
impl Add<ConstDecimals<64>> for ConstDecimals<23>
type Output = ConstDecimals<87>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<24>
impl Add<ConstDecimals<64>> for ConstDecimals<24>
type Output = ConstDecimals<88>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<25>
impl Add<ConstDecimals<64>> for ConstDecimals<25>
type Output = ConstDecimals<89>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<26>
impl Add<ConstDecimals<64>> for ConstDecimals<26>
type Output = ConstDecimals<90>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<27>
impl Add<ConstDecimals<64>> for ConstDecimals<27>
type Output = ConstDecimals<91>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<28>
impl Add<ConstDecimals<64>> for ConstDecimals<28>
type Output = ConstDecimals<92>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<29>
impl Add<ConstDecimals<64>> for ConstDecimals<29>
type Output = ConstDecimals<93>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<30>
impl Add<ConstDecimals<64>> for ConstDecimals<30>
type Output = ConstDecimals<94>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<31>
impl Add<ConstDecimals<64>> for ConstDecimals<31>
type Output = ConstDecimals<95>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<32>
impl Add<ConstDecimals<64>> for ConstDecimals<32>
type Output = ConstDecimals<96>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<33>
impl Add<ConstDecimals<64>> for ConstDecimals<33>
type Output = ConstDecimals<97>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<34>
impl Add<ConstDecimals<64>> for ConstDecimals<34>
type Output = ConstDecimals<98>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<35>
impl Add<ConstDecimals<64>> for ConstDecimals<35>
type Output = ConstDecimals<99>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<36>
impl Add<ConstDecimals<64>> for ConstDecimals<36>
type Output = ConstDecimals<100>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<37>
impl Add<ConstDecimals<64>> for ConstDecimals<37>
type Output = ConstDecimals<101>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<38>
impl Add<ConstDecimals<64>> for ConstDecimals<38>
type Output = ConstDecimals<102>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<39>
impl Add<ConstDecimals<64>> for ConstDecimals<39>
type Output = ConstDecimals<103>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<40>
impl Add<ConstDecimals<64>> for ConstDecimals<40>
type Output = ConstDecimals<104>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<41>
impl Add<ConstDecimals<64>> for ConstDecimals<41>
type Output = ConstDecimals<105>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<42>
impl Add<ConstDecimals<64>> for ConstDecimals<42>
type Output = ConstDecimals<106>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<43>
impl Add<ConstDecimals<64>> for ConstDecimals<43>
type Output = ConstDecimals<107>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<44>
impl Add<ConstDecimals<64>> for ConstDecimals<44>
type Output = ConstDecimals<108>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<45>
impl Add<ConstDecimals<64>> for ConstDecimals<45>
type Output = ConstDecimals<109>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<46>
impl Add<ConstDecimals<64>> for ConstDecimals<46>
type Output = ConstDecimals<110>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<47>
impl Add<ConstDecimals<64>> for ConstDecimals<47>
type Output = ConstDecimals<111>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<48>
impl Add<ConstDecimals<64>> for ConstDecimals<48>
type Output = ConstDecimals<112>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<49>
impl Add<ConstDecimals<64>> for ConstDecimals<49>
type Output = ConstDecimals<113>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<50>
impl Add<ConstDecimals<64>> for ConstDecimals<50>
type Output = ConstDecimals<114>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<51>
impl Add<ConstDecimals<64>> for ConstDecimals<51>
type Output = ConstDecimals<115>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<52>
impl Add<ConstDecimals<64>> for ConstDecimals<52>
type Output = ConstDecimals<116>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<53>
impl Add<ConstDecimals<64>> for ConstDecimals<53>
type Output = ConstDecimals<117>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<54>
impl Add<ConstDecimals<64>> for ConstDecimals<54>
type Output = ConstDecimals<118>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<55>
impl Add<ConstDecimals<64>> for ConstDecimals<55>
type Output = ConstDecimals<119>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<56>
impl Add<ConstDecimals<64>> for ConstDecimals<56>
type Output = ConstDecimals<120>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<57>
impl Add<ConstDecimals<64>> for ConstDecimals<57>
type Output = ConstDecimals<121>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<58>
impl Add<ConstDecimals<64>> for ConstDecimals<58>
type Output = ConstDecimals<122>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<59>
impl Add<ConstDecimals<64>> for ConstDecimals<59>
type Output = ConstDecimals<123>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<60>
impl Add<ConstDecimals<64>> for ConstDecimals<60>
type Output = ConstDecimals<124>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<61>
impl Add<ConstDecimals<64>> for ConstDecimals<61>
type Output = ConstDecimals<125>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<62>
impl Add<ConstDecimals<64>> for ConstDecimals<62>
type Output = ConstDecimals<126>
Source§impl Add<ConstDecimals<64>> for ConstDecimals<63>
impl Add<ConstDecimals<64>> for ConstDecimals<63>
type Output = ConstDecimals<127>
Source§impl Add<BigUint> for &multiversx_sc_scenario::imports::RustBigUint
impl Add<BigUint> for &multiversx_sc_scenario::imports::RustBigUint
1.74.0 · Source§impl<'a> Add<Saturating<i8>> for &'a Saturating<i8>
impl<'a> Add<Saturating<i8>> for &'a Saturating<i8>
1.74.0 · Source§impl<'a> Add<Saturating<i16>> for &'a Saturating<i16>
impl<'a> Add<Saturating<i16>> for &'a Saturating<i16>
1.74.0 · Source§impl<'a> Add<Saturating<i32>> for &'a Saturating<i32>
impl<'a> Add<Saturating<i32>> for &'a Saturating<i32>
1.74.0 · Source§impl<'a> Add<Saturating<i64>> for &'a Saturating<i64>
impl<'a> Add<Saturating<i64>> for &'a Saturating<i64>
1.74.0 · Source§impl<'a> Add<Saturating<i128>> for &'a Saturating<i128>
impl<'a> Add<Saturating<i128>> for &'a Saturating<i128>
1.74.0 · Source§impl<'a> Add<Saturating<isize>> for &'a Saturating<isize>
impl<'a> Add<Saturating<isize>> for &'a Saturating<isize>
1.74.0 · Source§impl<'a> Add<Saturating<u8>> for &'a Saturating<u8>
impl<'a> Add<Saturating<u8>> for &'a Saturating<u8>
1.74.0 · Source§impl<'a> Add<Saturating<u16>> for &'a Saturating<u16>
impl<'a> Add<Saturating<u16>> for &'a Saturating<u16>
1.74.0 · Source§impl<'a> Add<Saturating<u32>> for &'a Saturating<u32>
impl<'a> Add<Saturating<u32>> for &'a Saturating<u32>
1.74.0 · Source§impl<'a> Add<Saturating<u64>> for &'a Saturating<u64>
impl<'a> Add<Saturating<u64>> for &'a Saturating<u64>
1.74.0 · Source§impl<'a> Add<Saturating<u128>> for &'a Saturating<u128>
impl<'a> Add<Saturating<u128>> for &'a Saturating<u128>
1.74.0 · Source§impl<'a> Add<Saturating<usize>> for &'a Saturating<usize>
impl<'a> Add<Saturating<usize>> for &'a Saturating<usize>
Source§impl<'a> Add<EdwardsPoint> for &'a EdwardsPoint
impl<'a> Add<EdwardsPoint> for &'a EdwardsPoint
type Output = EdwardsPoint
Source§impl<'a> Add<RistrettoPoint> for &'a RistrettoPoint
impl<'a> Add<RistrettoPoint> for &'a RistrettoPoint
type Output = RistrettoPoint
Source§impl<'a, 'b> Add<&'b EdwardsPoint> for &'a EdwardsPoint
impl<'a, 'b> Add<&'b EdwardsPoint> for &'a EdwardsPoint
type Output = EdwardsPoint
Source§impl<'a, 'b> Add<&'b RistrettoPoint> for &'a RistrettoPoint
impl<'a, 'b> Add<&'b RistrettoPoint> for &'a RistrettoPoint
type Output = RistrettoPoint
Source§impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Add<&'b AffineNielsPoint> for &'a EdwardsPoint
Source§impl<'a, 'b> Add<&'b ProjectiveNielsPoint> for &'a EdwardsPoint
impl<'a, 'b> Add<&'b ProjectiveNielsPoint> for &'a EdwardsPoint
Source§impl<'a, 'b, M> Add<&'b BigInt<M>> for &'a multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Add<&'b BigInt<M>> for &'a multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<'a, 'b, M> Add<&'b BigInt<M>> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Add<&'b BigInt<M>> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'a, 'b, M> Add<&'b BigUint<M>> for &'a multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Add<&'b BigUint<M>> for &'a multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<'a, 'b, M> Add<&'b BigUint<M>> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, 'b, M> Add<&'b BigUint<M>> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'a, M> Add<u32> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, M> Add<u32> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'a, M> Add<u64> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'a, M> Add<u64> for &'a multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<'b> Add<&'b EdwardsPoint> for EdwardsPoint
impl<'b> Add<&'b EdwardsPoint> for EdwardsPoint
type Output = EdwardsPoint
Source§impl<'b> Add<&'b RistrettoPoint> for RistrettoPoint
impl<'b> Add<&'b RistrettoPoint> for RistrettoPoint
type Output = RistrettoPoint
Source§impl<'b, M> Add<&'b BigUint<M>> for multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<'b, M> Add<&'b BigUint<M>> for multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<M> Add for multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
impl<M> Add for multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<M> Add for multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<M> Add for multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<M> Add for ManagedDecimal<M, usize>where
M: ManagedTypeApi,
impl<M> Add for ManagedDecimal<M, usize>where
M: ManagedTypeApi,
type Output = ManagedDecimal<M, usize>
Source§impl<M> Add for ManagedDecimalSigned<M, usize>where
M: ManagedTypeApi,
impl<M> Add for ManagedDecimalSigned<M, usize>where
M: ManagedTypeApi,
type Output = ManagedDecimalSigned<M, usize>
Source§impl<M> Add<BigInt<M>> for multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
impl<M> Add<BigInt<M>> for multiversx_sc_scenario::imports::BigUint<M>where
M: ManagedTypeApi,
Source§impl<M> Add<BigUint<M>> for multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
impl<M> Add<BigUint<M>> for multiversx_sc_scenario::imports::BigInt<M>where
M: ManagedTypeApi,
Source§impl<M, const DECIMALS: usize> Add for ManagedDecimal<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
impl<M, const DECIMALS: usize> Add for ManagedDecimal<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
type Output = ManagedDecimal<M, ConstDecimals<DECIMALS>>
Source§impl<M, const DECIMALS: usize> Add for ManagedDecimalSigned<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
impl<M, const DECIMALS: usize> Add for ManagedDecimalSigned<M, ConstDecimals<DECIMALS>>where
M: ManagedTypeApi,
type Output = ManagedDecimalSigned<M, ConstDecimals<DECIMALS>>
Source§impl<Ul, Ur> Add<UInt<Ur, B0>> for UInt<Ul, B0>
UInt<Ul, B0> + UInt<Ur, B0> = UInt<Ul + Ur, B0>
impl<Ul, Ur> Add<UInt<Ur, B0>> for UInt<Ul, B0>
UInt<Ul, B0> + UInt<Ur, B0> = UInt<Ul + Ur, B0>
Source§impl<Ul, Ur> Add<UInt<Ur, B0>> for UInt<Ul, B1>
UInt<Ul, B1> + UInt<Ur, B0> = UInt<Ul + Ur, B1>
impl<Ul, Ur> Add<UInt<Ur, B0>> for UInt<Ul, B1>
UInt<Ul, B1> + UInt<Ur, B0> = UInt<Ul + Ur, B1>
Source§impl<Ul, Ur> Add<UInt<Ur, B1>> for UInt<Ul, B0>
UInt<Ul, B0> + UInt<Ur, B1> = UInt<Ul + Ur, B1>
impl<Ul, Ur> Add<UInt<Ur, B1>> for UInt<Ul, B0>
UInt<Ul, B0> + UInt<Ur, B1> = UInt<Ul + Ur, B1>
Source§impl<Ul, Ur> Add<UInt<Ur, B1>> for UInt<Ul, B1>
UInt<Ul, B1> + UInt<Ur, B1> = UInt<(Ul + Ur) + B1, B0>
impl<Ul, Ur> Add<UInt<Ur, B1>> for UInt<Ul, B1>
UInt<Ul, B1> + UInt<Ur, B1> = UInt<(Ul + Ur) + B1, B0>