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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
use Bound;
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for a primitive type.
/// Base implementation of `Domain` for the `Ordering` enum.
/// Base implementation of `Domain` for a `NoisyFloat`.
/// Base implementation of `Domain` for a `BigInt`.
/// Base implementation of `Domain` for a `BigUint`.
/// Provides otherwise unknown information about the type it is being implemented for.
///
/// There are five properties which can be combined into six categories a domain can be in,
/// each with their own implementation requirements and assumptions.
///
/// Should the type you're trying to implement not fit into any of these, please open an issue!
///
/// # Properties
/// Requirements to be recognized as
/// - `discrete`:
/// - `DISCRETE` is set to true
/// - `predecessor()` and `successor()` are implemented and do not panic
/// - `continuous`:
/// - `DISCRETE` is set to false (default)
/// - `predecessor()` and `successor()` are never to be called (they panic by default)
/// - `limited`:
/// - `minimum()` and `maximum()` do not return `Bound::Unbounded`
/// - `bidirectional`
/// - `minimum()` and `maximum()` return `Bound::Unbounded` (default)
/// - `unidirectional`
/// - either `minimum()` or `maximum()` does not return `Bound::Unbounded`
///
/// # Categories
/// ## discrete and limited
/// This is your typical primitive integer like `u8` or `i32`.
///
/// ## discrete, unlimited and bidirectional
/// An example for this kind of domain is `BigInt`. The `num-bigint` crate is used to optionally
/// provide an implementation.
///
/// ## discrete, unlimited and unidirectional
/// Like `BigInt`, but limited in one direction: `BigUint`.
///
/// ## continuous and limited
/// Because `f32` or `f64` do not implement `Ord`, this trait can not be implemented for them directly.
/// Instead, using `noisy_float`, all four types (`N32`, `N64`, `R32` and `R64`) have an optional
/// implementation. In terms of concrete values, an example domain could be `[0.0, 1.0]`.
///
/// ## continuous, unlimited and bidirectional
/// This category requires an arbitrarily large float. So far no base/default implementation exists.
/// If you would like to suggest a crate that provides this type (it must implement `Ord`!), please
/// leave an issue.
///
/// ## continuous, unlimited and unidirectional
/// This category requires an arbitrarily large float. So far no base/default implementation exists.
/// If you would like to suggest a crate that provides this type (it must implement `Ord`!), please
/// leave an issue.
/// `Domain`-driven trait required to implement iterators on discrete types.