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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
//! Numeric traits for generic mathematics.

use std::mem::size_of;

/// Reexports.
pub use int::{Int, UnsignedInt};
pub use float::Float;
pub use signed::Signed;

mod int;
mod float;
mod signed;

/// Types that have a `zero` value.
///
/// This trait is intended for use in conjunction with `Add`, as an identity:
/// `x + T::zero() == x`.
pub trait Zero {
    /// Returns the `zero` (usually, additive identity) for this type.
    fn zero() -> Self;
}

/// Types that have a `one` value.
///
/// This trait is intended for use in conjunction with `Mul`, as an identity:
/// `x * T::one() == x`.
pub trait One {
    /// Returns the `one` (usually, multiplicative identity) for this type.
    fn one() -> Self;
}

macro_rules! impl_zero_one_int {
    ($($t:ty)*) => {
        $(
            impl Zero for $t {
                #[inline(always)]
                fn zero() -> Self { 0 }
            }

            impl One for $t {
                #[inline(always)]
                fn one() -> Self { 1 }
            }
        )*
    }
}

impl_zero_one_int!(u8 u16 u32 u64 usize i8 i16 i32 i64 isize);

macro_rules! impl_zero_one_float {
    ($($t:ty)*) => {
        $(
            impl Zero for $t {
                #[inline(always)]
                fn zero() -> Self { 0.0 }
            }

            impl One for $t {
                #[inline(always)]
                fn one() -> Self { 1.0 }
            }
        )*
    }
}

impl_zero_one_float!(f32 f64);

/// Constructs `Self` from the other type via a conversion.
pub trait CastFrom<T>: Sized {
    /// Constructs `Self` from the type `T`.
    fn cast_from(x: T) -> Option<Self>;
}

/// Converts `Self` into the other type.
pub trait CastInto<T> {
    /// Casts `Self` into the type `T`.
    fn cast_into(self) -> Option<T>;
}

impl<S, T> CastInto<T> for S
    where T: CastFrom<S>
{
    fn cast_into(self) -> Option<T> {
        <T>::cast_from(self)
    }
}

macro_rules! impl_cast_same_type {
    ($T:ty) => {
        impl CastFrom<$T> for $T {
            fn cast_from(x: $T) -> Option<$T> {
                Some(x)
            }
        }
    }
}

macro_rules! impl_cast_int_to_int {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                if size_of::<$S>() <= size_of::<$T>() {
                    Some(x as $T)
                } else {
                    let n = x as i64;
                    let min_value = <$T>::min_value();
                    let max_value = <$T>::max_value();
                    if min_value as i64 <= n && n <= max_value as i64 {
                        Some(x as $T)
                    } else {
                        None
                    }
                }
            }
        }
    }
}

macro_rules! impl_cast_int_to_uint {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                let zero = <$S>::zero();
                let max_value = <$T>::max_value();
                if zero <= x && x as u64 <= max_value as u64 {
                    Some(x as $T)
                } else {
                    None
                }
            }
        }
    }
}

macro_rules! impl_cast_int_to_float {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                Some(x as $T)
            }
        }
    }
}

macro_rules! impl_cast_uint_to_int {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                let max_value = <$T>::max_value();
                if x as u64 <= max_value as u64 {
                    Some(x as $T)
                } else {
                    None
                }
            }

        }
    }
}

macro_rules! impl_cast_uint_to_uint {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                if size_of::<$S>() <= size_of::<$T>() {
                    Some(x as $T)
                } else {
                    let zero = <$S>::zero();
                    let max_value = <$T>::max_value();
                    if zero <= x && x as u64 <= max_value as u64 {
                        Some(x as $T)
                    } else {
                        None
                    }
                }
            }
        }
    }
}

macro_rules! impl_cast_float_to_int {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                let min_value = <$T>::min_value();
                let max_value = <$T>::max_value();
                if min_value as $S <= x && x <= max_value as $S {
                    Some(x as $T)
                } else {
                    None
                }
            }
        }
    }
}

macro_rules! impl_cast_float_to_uint {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                let zero = <$S>::zero();
                let max_value = <$T>::max_value();
                if zero <= x && x <= max_value as $S {
                    Some(x as $T)
                } else {
                    None
                }
            }
        }
    }
}

macro_rules! impl_cast_float_to_float {
    ($S:ty, $T:ty) => {
        impl CastFrom<$S> for $T {
            fn cast_from(x: $S) -> Option<$T> {
                if size_of::<$S>() <= size_of::<$T>() {
                    Some(x as $T)
                } else {
                    let y = x as f64;
                    let max_value = <$S>::max_value();
                    if -max_value as f64 <= y && y <= max_value as f64 {
                        Some(x as $T)
                    } else {
                        None
                    }
                }
            }
        }
    }
}

impl_cast_same_type!(i8);
impl_cast_int_to_int!(i8, i16);
impl_cast_int_to_int!(i8, i32);
impl_cast_int_to_int!(i8, i64);
impl_cast_int_to_int!(i8, isize);
impl_cast_int_to_uint!(i8, u8);
impl_cast_int_to_uint!(i8, u16);
impl_cast_int_to_uint!(i8, u32);
impl_cast_int_to_uint!(i8, u64);
impl_cast_int_to_uint!(i8, usize);
impl_cast_int_to_float!(i8, f32);
impl_cast_int_to_float!(i8, f64);

impl_cast_int_to_int!(i16, i8);
impl_cast_same_type!(i16);
impl_cast_int_to_int!(i16, i32);
impl_cast_int_to_int!(i16, i64);
impl_cast_int_to_int!(i16, isize);
impl_cast_int_to_uint!(i16, u8);
impl_cast_int_to_uint!(i16, u16);
impl_cast_int_to_uint!(i16, u32);
impl_cast_int_to_uint!(i16, u64);
impl_cast_int_to_uint!(i16, usize);
impl_cast_int_to_float!(i16, f32);
impl_cast_int_to_float!(i16, f64);

impl_cast_int_to_int!(i32, i8);
impl_cast_int_to_int!(i32, i16);
impl_cast_same_type!(i32);
impl_cast_int_to_int!(i32, i64);
impl_cast_int_to_int!(i32, isize);
impl_cast_int_to_uint!(i32, u8);
impl_cast_int_to_uint!(i32, u16);
impl_cast_int_to_uint!(i32, u32);
impl_cast_int_to_uint!(i32, u64);
impl_cast_int_to_uint!(i32, usize);
impl_cast_int_to_float!(i32, f32);
impl_cast_int_to_float!(i32, f64);

impl_cast_int_to_int!(i64, i8);
impl_cast_int_to_int!(i64, i16);
impl_cast_int_to_int!(i64, i32);
impl_cast_same_type!(i64);
impl_cast_int_to_int!(i64, isize);
impl_cast_int_to_uint!(i64, u8);
impl_cast_int_to_uint!(i64, u16);
impl_cast_int_to_uint!(i64, u32);
impl_cast_int_to_uint!(i64, u64);
impl_cast_int_to_uint!(i64, usize);
impl_cast_int_to_float!(i64, f32);
impl_cast_int_to_float!(i64, f64);

impl_cast_int_to_int!(isize, i8);
impl_cast_int_to_int!(isize, i16);
impl_cast_int_to_int!(isize, i32);
impl_cast_int_to_int!(isize, i64);
impl_cast_same_type!(isize);
impl_cast_int_to_uint!(isize, u8);
impl_cast_int_to_uint!(isize, u16);
impl_cast_int_to_uint!(isize, u32);
impl_cast_int_to_uint!(isize, u64);
impl_cast_int_to_uint!(isize, usize);
impl_cast_int_to_float!(isize, f32);
impl_cast_int_to_float!(isize, f64);

impl_cast_uint_to_uint!(u8, i8);
impl_cast_uint_to_int!(u8, i16);
impl_cast_uint_to_int!(u8, i32);
impl_cast_uint_to_int!(u8, i64);
impl_cast_uint_to_int!(u8, isize);
impl_cast_same_type!(u8);
impl_cast_uint_to_uint!(u8, u16);
impl_cast_uint_to_uint!(u8, u32);
impl_cast_uint_to_uint!(u8, u64);
impl_cast_uint_to_uint!(u8, usize);
impl_cast_int_to_float!(u8, f32);
impl_cast_int_to_float!(u8, f64);

impl_cast_uint_to_uint!(u16, i8);
impl_cast_uint_to_int!(u16, i16);
impl_cast_uint_to_int!(u16, i32);
impl_cast_uint_to_int!(u16, i64);
impl_cast_uint_to_int!(u16, isize);
impl_cast_uint_to_uint!(u16, u8);
impl_cast_same_type!(u16);
impl_cast_uint_to_uint!(u16, u32);
impl_cast_uint_to_uint!(u16, u64);
impl_cast_uint_to_uint!(u16, usize);
impl_cast_int_to_float!(u16, f32);
impl_cast_int_to_float!(u16, f64);

impl_cast_uint_to_uint!(u32, i8);
impl_cast_uint_to_int!(u32, i16);
impl_cast_uint_to_int!(u32, i32);
impl_cast_uint_to_int!(u32, i64);
impl_cast_uint_to_int!(u32, isize);
impl_cast_uint_to_uint!(u32, u8);
impl_cast_uint_to_uint!(u32, u16);
impl_cast_same_type!(u32);
impl_cast_uint_to_uint!(u32, u64);
impl_cast_uint_to_uint!(u32, usize);
impl_cast_int_to_float!(u32, f32);
impl_cast_int_to_float!(u32, f64);

impl_cast_uint_to_uint!(u64, i8);
impl_cast_uint_to_int!(u64, i16);
impl_cast_uint_to_int!(u64, i32);
impl_cast_uint_to_int!(u64, i64);
impl_cast_uint_to_int!(u64, isize);
impl_cast_uint_to_uint!(u64, u8);
impl_cast_uint_to_uint!(u64, u16);
impl_cast_uint_to_uint!(u64, u32);
impl_cast_same_type!(u64);
impl_cast_uint_to_uint!(u64, usize);
impl_cast_int_to_float!(u64, f32);
impl_cast_int_to_float!(u64, f64);

impl_cast_uint_to_uint!(usize, i8);
impl_cast_uint_to_int!(usize, i16);
impl_cast_uint_to_int!(usize, i32);
impl_cast_uint_to_int!(usize, i64);
impl_cast_uint_to_int!(usize, isize);
impl_cast_uint_to_uint!(usize, u8);
impl_cast_uint_to_uint!(usize, u16);
impl_cast_uint_to_uint!(usize, u32);
impl_cast_uint_to_uint!(usize, u64);
impl_cast_same_type!(usize);
impl_cast_int_to_float!(usize, f32);
impl_cast_int_to_float!(usize, f64);

impl_cast_float_to_int!(f32, i8);
impl_cast_float_to_int!(f32, i16);
impl_cast_float_to_int!(f32, i32);
impl_cast_float_to_int!(f32, i64);
impl_cast_float_to_int!(f32, isize);
impl_cast_float_to_uint!(f32, u8);
impl_cast_float_to_uint!(f32, u16);
impl_cast_float_to_uint!(f32, u32);
impl_cast_float_to_uint!(f32, u64);
impl_cast_float_to_uint!(f32, usize);
impl_cast_same_type!(f32);
impl_cast_float_to_float!(f32, f64);

impl_cast_float_to_int!(f64, i8);
impl_cast_float_to_int!(f64, i16);
impl_cast_float_to_int!(f64, i32);
impl_cast_float_to_int!(f64, i64);
impl_cast_float_to_int!(f64, isize);
impl_cast_float_to_uint!(f64, u8);
impl_cast_float_to_uint!(f64, u16);
impl_cast_float_to_uint!(f64, u32);
impl_cast_float_to_uint!(f64, u64);
impl_cast_float_to_uint!(f64, usize);
impl_cast_float_to_float!(f64, f32);
impl_cast_same_type!(f64);

#[test]
fn test_cast() {
    let a = 32i32;
    let b = f32::cast_from(a).unwrap();
    let c: Option<i32> = 1.0e+123f64.cast_into();
    assert_eq!(b, 32.0f32);
    assert_eq!(c, None);
}