1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
/*!
This crate provides type-level numbers evaluated at compile time.

The traits defined or used in this crate are used in a typical manner. They can
be divided into two categories: **marker traits** and **type operators**.

Many of the marker traits have functions defined, but they all do essentially the same
thing: convert a type into its runtime counterpart, and are really just there for
debugging. For example,

```rust
# use typenum::consts::N4;
# use typenum::int::Integer;
assert_eq!(N4::to_i32(), -4);
```

**Type operators** are traits that behave as functions at the type level. These are the
meat of this library. Where possible, traits defined in the stdlib have been used, but
their attached functions have not been implemented.

For example, the `Add` trait is implemented for both unsigned and signed integers, but
the `add` function is not. As there are never any objects of the types defined here, it
wouldn't make sense to implement it. What is important is its associated type `Output`,
which is where the addition happens.

```rust
use std::ops::Add;
use typenum::consts::{P3, P4};
use typenum::int::Integer;

type X = <P3 as Add<P4>>::Output;
assert_eq!(<X as Integer>::to_i32(), 7);
```

Documented in each module is the full list of type operators implemented.
*/
use std::cmp::{Ordering};

pub mod consts;
pub mod bit;
pub mod uint;
pub mod int;
pub mod __private;

/// A **marker trait** to designate that a type is not zero. All number types in this
/// crate implement `NonZero` except `B0`, `U0`, and `Z0`.
pub trait NonZero {}

/**
A **type operator** that ensures that `Rhs` is the same as `Self`, it is mainly useful
for writing macros that can take arbitrary binary or unary operators.

`Same` is implemented generically for all types; it should never need to be implemented
for anything else.

Note that Rust lazily evaluates types, so this will only fail for two different types if
the `Output` is used.

# Example
```rust
use typenum::Same;
use typenum::consts::{U4, U5};
use typenum::uint::Unsigned;

assert_eq!(<U5 as Same<U5>>::Output::to_u32(), 5);

// Only an error if we use it:
type Undefined = <U5 as Same<U4>>::Output;
// Compiler error:
// Undefined::to_u32();
```
*/
pub trait Same<Rhs = Self> {
    /// Should always be `Self`
    type Output;
}

impl<T> Same<T> for T {
    type Output = T;
}

/**
A **type operator** that provides exponentiation by repeated squaring.

# Example
```rust
use typenum::Pow;
use typenum::int::Integer;
use typenum::consts::{N3, P3};

assert_eq!(<N3 as Pow<P3>>::Output::to_i32(), -27);
```
*/
pub trait Pow<Rhs = Self> {
    type Output;
}

/**

A **Marker trait** for the types `Greater`, `Equal`, and `Less`.

This trait should not be implemented for anything outside this crate.

*/
pub trait Ord {
    fn to_ordering() -> Ordering;
}

/// A potential output from `Cmp`, this is the type equivalent to the enum variant
/// `std::cmp::Ordering::Greater`.
pub struct Greater;
/// A potential output from `Cmp`, this is the type equivalent to the enum variant
/// `std::cmp::Ordering::Less`.
pub struct Less;
/// A potential output from `Cmp`, this is the type equivalent to the enum variant
/// `std::cmp::Ordering::Equal`.
pub struct Equal;

/// Returns `std::cmp::Ordering::Greater`
impl Ord for Greater {
    #[inline] fn to_ordering() -> Ordering { Ordering::Greater }
}
/// Returns `std::cmp::Ordering::Less`
impl Ord for Less {
    #[inline] fn to_ordering() -> Ordering { Ordering::Less }
}
/// Returns `std::cmp::Ordering::Equal`
impl Ord for Equal {
    #[inline] fn to_ordering() -> Ordering { Ordering::Equal }
}

/**
A **type operator** for comparing `Self` and `Rhs`. It provides a similar functionality to
the function [`std::cmp::Ord::cmp`](https://doc.rust-lang.org/nightly/core/cmp/trait.Ord.html#tymethod.cmp) but for types.

# Example
```rust
use typenum::{Cmp, Ord, Greater, Less, Equal};
use typenum::consts::{N3, P2, P5};

assert_eq!(<P2 as Cmp<N3>>::Output::to_ordering(), Greater::to_ordering());
assert_eq!(<P2 as Cmp<P2>>::Output::to_ordering(), Equal::to_ordering());
assert_eq!(<P2 as Cmp<P5>>::Output::to_ordering(), Less::to_ordering());
```
*/
pub trait Cmp<Rhs = Self> {
    /// The result of the comparison. It should only ever be one of `Greater`, `Less`, or `Equal`.
    type Output;
}