Struct typenum::int::Z0 [−][src]
pub struct Z0;
Expand description
The type-level signed integer 0.
Implementations
Trait Implementations
Z0 + I = I
PInt + Z0 = PInt
NInt + Z0 = NInt
0 > -X
0 < X
0 == 0
X > 0
-X < 0
Z0 / I = Z0
where I != 0
Z0 * I = Z0
P * Z0 = Z0
N * Z0 = Z0
-Z0 = Z0
This method returns an ordering between self
and other
values if one exists. Read more
This method tests less than (for self
and other
) and is used by the <
operator. Read more
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
This method tests greater than (for self
and other
) and is used by the >
operator. Read more
0^N = 0
0^P = 0
0^0 = 1
P^0 = 1
N^0 = 1
Z0 % I = Z0
where I != 0
Z0 - N = P
Z0 - P = N
Z0 - Z0 = Z0
PInt - Z0 = PInt
NInt - Z0 = NInt