Documentation
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
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
// numera::number::integer::macros::try_from
//
//!
//
// TOC
//
// fallible conversions:
//   - try_from_integer!
//   - try_from_primitive!
//   - try_for_primitive!
//   - try_for_big! TODO
//   - try_from_any!

/* fallible TryFrom conversions */

/// Implements `TryFrom`: from integers, for integers.
///
/// # Args
/// - `$for`:    the base name of the target. e.g. `Integer`.
/// - `$p`:      target's inner corresponding primitive prefix: `i` or `u`.
///              (this is only used for `_neg` variants, MAYBE IMPROVE).
/// - `$for_b`:  the bit size of the target. e.g. `8`.
/// - `$from`:   the base name of the origin. e.g. `PositiveInteger`.
/// - `$from_b`: a list of bit sizes of the origin. e.g. `8, 16`.
///
/// # Examples
/// ```ignore
/// try_from_integer![int for: Integer + i + 8, from: Integer + 8, 16];
/// ```
///
/// # Branches ids
/// - `int`
/// - `neg_signed`
/// - `non0_int`
/// - `negnon0_non0`
/// - `non0`
/// - `negnon0_signed`
/// - `neg_int`
/// - `neg_nonzero`
/// - `negnon0_int`
/// - `neg_nonzero`
#[cfg(feature = "try_from")]
macro_rules! try_from_integer {
    // try_from_integer!
    // when `from` has an inner integer primitive.
    //
    // Used by:
    // - for: Nnz   from: Z, Nnz, P
    // - for: Z     from: Z, Nnz, Npz, P
    // - for: Npz   from: Npz
    // - for: Pz    from: N0z
    (int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Ok(Self(f.0.try_into()?))
        });
    };

    // try_from_integer!
    // when `from` has an inner integer primitive,
    // and `for` has an inner non-zero,
    // and we manually maintain the invariants.
    //
    // Used by:
    // - for: N0z   from: P
    // - for: Pz    from: P
    (int_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@int_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@int_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Ok(Self::new(f.0.try_into()?).unwrap())
        });
    };

    // try_from_integer!
    // when `from` has an unsigned inner primitive representing only negative values,
    // which has to be negated in the conversion.
    //
    // Used by:
    // - for: Z     from: Npz
    (neg_signed
     for: $for:ident + $p:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@neg_signed for: $for + $p + $for_b, from: $from + $from_b]; )+
    };
    (@neg_signed for: $for:ident + $p:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                Ok(Self(TryInto::<[<$p$for_b>]>::try_into(f.0)?.neg()))
            });
        }
    };

    // try_from_integer!
    // when `from` has an inner integer primitive and `for` has an inner nonzero primitive
    //
    // Used by:
    // - for: N0z   from: Z, Nnz
    // - for: Pz    from: Z
    (non0_int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@non0_int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0_int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Self::new(f.0.try_into()?)
        });
    };

    // try_from_integer!
    // when `from` has an unsigned inner primitive representing only negative values,
    // and `for` has a non-zero inner primitive
    //
    // Used by:
    // - for: N0z   from: Npz
    (negnon0_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@negnon0_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@negnon0_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Ok(Self::new(f.0.try_into()?)?.neg())
        });
    };

    // try_from_integer!
    // when `from` has an inner NonZero*.
    //
    // Used by:
    // - for: Nnz   from: N0z, Pz
    // - for: Z     from: N0z, Pz
    // - for: Npz   from: Nz
    // - for: N0z   from: N0z, Pz
    // - for: Pz    from: Pz
    // - for: Nz    from: Nz
    (non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            #[cfg(feature = "safe")]
            return Self::from_innermost_repr(f.0.get().try_into()?);

            #[cfg(not(feature = "safe"))]
            // SAFETY: all ok results of try_from should be valid
            return Ok(unsafe { Self::from_innermost_repr_unchecked(f.0.get().try_into()?) });
        });
    };

    // try_from_integer!
    // when `from` has an unsigned inner NonZero* representing only negative values,
    // which has to be negated in the conversion.
    //
    // - for: Z     from: Nz
    // - for: N0z   from: Nz
    (negnon0_signed
     for: $for:ident + $p:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@negnon0_signed for: $for + $p + $for_b, from: $from + $from_b]; )+
    };
    (@negnon0_signed
     for: $for:ident + $p:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                #[cfg(feature = "safe")]
                return Self::from_innermost_repr(TryInto::<[<$p$for_b>]>::try_into(f.0.get())?.neg());

                #[cfg(not(feature = "safe"))]
                // SAFETY: all ok results of try_from should be valid
                return unsafe {
                    Ok(Self::from_innermost_repr_unchecked(
                        TryInto::<[<$p$for_b>]>::try_into(f.0.get())?.neg()
                    ))
                };
            });
        }
    };

    // try_from_integer!
    // when `from` is an Integer and `for` can not represent negative values.
    //
    // Used by:
    // - for: Npz   from: Z
    (neg_int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@neg_int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg_int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Ok(Self((-f.0).try_into()?))
        });
    };

    // try_from_integer!
    // when `from` is an Integer and `for` can not represent negative values or 0.
    //
    // Used by:
    // - for: Nz   from: Z
    (negnon0_int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@negnon0_int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@negnon0_int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Self::new_neg((-f.0).try_into()?)
        });
    };

    // try_from_integer!
    // when `from` is a NonZeroInteger and `for` can only represent positive values
    //
    // Used by:
    // - for: Npz   from: N0z
    (non0_pos for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@non0_pos for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0_pos for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            #[cfg(feature = "safe")]
            return Self::from_inner_repr((-f.0.get()).try_into()?);

            #[cfg(not(feature = "safe"))]
            // SAFETY: all ok results of try_from should be valid
            return Ok(unsafe { Self::from_inner_repr_unchecked((-f.0.get()).try_into()?) });
        });
    };

    // try_from_integer!
    // when both `for` and `from` are non-positive Integers
    //
    // Used by:
    // - for: Nz   from: Npz
    (neg_non0neg for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@neg->non0_neg for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg->non0_neg for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Self::new_neg((f.0).try_into()?)
        });
    };

    // try_from_integer!
    // when `from` is a non-zero integer and `for` can not represent positive values
    //
    // Used by:
    // - for: Nz    from: N0z
    (neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_integer![@neg_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Self::new_neg((-f.0.get()).try_into()?)
        });
    };
}
/// No-op alternative for disabling `TryFrom` impls.
#[cfg(not(feature = "try_from"))]
macro_rules! try_from_integer {
    ($($tt:tt)*) => {};
}
pub(crate) use try_from_integer;

/// Implements `TryFrom`: from primitives, for integers.
///
/// # Args
/// - `$for`:    the base name of the target. e.g. `NonZeroInteger`.
/// - `$for_b`:  the bit size of the target. e.g. `16`.
/// - `$from`:   the base name of the origin. e.g. `u`.
/// - `$from_b`: a list of bit sizes of the origin. e.g. `8, 16`.
///
/// # Examples
/// ```ignore
/// try_from_primitive![for: Integer + 8, from: u + 8, 16, 32, 64, 128];
/// ```
///
/// # Branches ids
/// - `int`
/// - `nonzero`
/// - `neg_int`
/// - `non0_pos`
/// - `neg_int`
#[cfg(feature = "try_from")]
macro_rules! try_from_primitive {
    // try_from_primitive!
    // when `from` is an integer primitive.
    //
    // Used by:
    // - for: Z     from: u, i
    // - for: Nnz   from: u, i
    // - for: N0z   from: u, i
    // - for: Pz    from: u, i
    (int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_primitive![@int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: $from+$from_b, arg:f, body: {
            Self::from_innermost_repr(f.try_into()?)
        });
        $crate::all::impl_from!(try for: $for+$for_b, from: &$from+$from_b, arg:f, body: {
            Self::from_innermost_repr((*f).try_into()?)
        });
    };

    // try_from_primitive!
    // when `from` is a non-zero integer primitive.
    //
    // Used by:
    // - for: Z     from: NonZeroU, NonZeroI
    // - for: Pz    from: NonZeroU, NonZeroI
    // - for: N0z   from: NonZeroU, NonZeroI
    // - for: Nnz   from: NonZeroU, NonZeroI
    (non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_primitive![@non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            #[cfg(feature = "safe")]
            return Self::from_innermost_repr(f.get().try_into()?);

            #[cfg(not(feature = "safe"))]
            // SAFETY: all ok results of try_from should be valid
            return Ok(unsafe { Self::from_innermost_repr_unchecked(f.get().try_into()?) });
        });
    };

    // try_from_primitive!
    // when `from` is a NonZeroI and `for` can not represent positive values
    //
    // Used by:
    // - for: Npz   from: NonZeroI
    (non0_pos for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_primitive![@non0_pos for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0_pos for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            #[cfg(feature = "safe")]
            return Self::from_inner_repr((-f.get()).try_into()?);

            #[cfg(not(feature = "safe"))]
            // SAFETY: all ok results of try_from should be valid
            return Ok(unsafe { Self::from_inner_repr_unchecked((-f.get()).try_into()?) });
        });
    };

    // try_from_primitive!
    // when `from` is a primitive integer and `for` can not represent positive values
    //
    // Used by:
    // - for: Npz   from: i
    (neg_int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_primitive![@neg_int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg_int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: $from+$from_b, arg:f, body: {
            Self::from_innermost_repr((-f).try_into()?)
        });
        $crate::all::impl_from!(try for: $for+$for_b, from: &$from+$from_b, arg:f, body: {
            Self::from_innermost_repr((-*f).try_into()?)
        });
    };

    // try_from_primitive!
    // when `from` is a primitive integer and `for` can only represent negative values.
    //
    // Used by:
    // - for: Nz    from: i
    (negnon0_int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_primitive![@neg_int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@negnon0_int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: $from+$from_b, arg:f, body: {
            Self::new_neg((-f).try_into()?)
        });
        $crate::all::impl_from!(try for: $for+$for_b, from: &$from+$from_b, arg:f, body: {
            Self::new_neg((-*f).try_into()?)
        });
    };

    // try_from_primitive!
    // when `from` is a NonZeroI and `for` can not represent positive values.
    //
    // Used by:
    // - for: Nz    from: NonZeroI
    (neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_primitive![@neg_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Self::new_neg((-f.get()).try_into()?)
        });
    };
}
/// No-op alternative for disabling `TryFrom` impls.
#[cfg(not(feature = "try_from"))]
macro_rules! try_from_primitive {
    ($($tt:tt)*) => {};
}
pub(crate) use try_from_primitive;

/// Implements `TryFrom`: from integers, for primitives.
///
/// # Args
/// - `$for`:    the base name of the target. e.g. `NonZeroInteger`.
/// - `$for_b`:  the bit size of the target. e.g. `16`.
/// - `$from`:   the base name of the origin. e.g. `u`.
/// - `$from_b`: a list of bit sizes of the origin. e.g. `8, 16`.
///
/// # Examples
/// ```ignore
/// try_for_primitive![for: Integer + 8, from: u + 8, 16, 32, 64, 128];
/// ```
///
/// # Branches ids
/// - `int`
/// - `non0`
/// - `neg_int`
/// - `non0_pos`
/// - `neg_int`
#[cfg(feature = "try_from")]
macro_rules! try_for_primitive {
    // try_for_primitive!
    // when `from` is an integer with the same Zeroness as `for`
    //
    // Used by:
    // - for: i        from: Z, Nnz
    // - for: u        from: Z, Nnz, Pz
    // - for: NonZeroI from: N0z, Pz
    // - for: NonZeroU from: N0z
    (int for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@int for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@int for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Ok(f.0.try_into()?)
        });
    };

    // try_for_primitive!
    // when `from` is a non-zero integer, while `for` does support zero.
    //
    // Used by:
    // - for: i     from: N0z, Pz
    // - for: u     from: N0z, Pz
    (non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
            Ok(f.0.get().try_into()?)
        });
    };

    // try_for_primitive!
    // when `from` supports zero, but `for` does not.
    //
    // Used by:
    // - for: NonZeroI  from: Z, Nnz
    // - for: NonZeroU  from: Z, Nnz
    (int_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@int_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@int_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                [<$for$for_b>]::new(f.0.try_into()?).ok_or(Self::Error::Conversion)
            });
        }
    };

    // try_for_primitive!
    // when `from` is an non-positive integer and `for` is a signed primitive
    //
    // Used by:
    // - for: i        from: Npz
    (neg for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@neg for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                Ok([<$for$for_b>]::try_from(f.0)?.neg())
            });
        }
    };

    // try_for_primitive!
    // when `from` is an non-positive integer and `for` is a non-zero signed primitive
    //
    // Used by:
    // - for: NonZeroI  from: Npz
    (neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@neg_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                [<$for$for_b>]::new([<i$for_b>]::try_from(f.0)?.neg())
                    .ok_or(Self::Error::Conversion)
            });
        }
    };

    // try_for_primitive!
    // when `from` is a negative integer, and `for` is a signed primitive
    //
    // Used by:
    // - for: i     from: Nz
    (non0neg for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@non0neg for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0neg for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                Ok([<$for$for_b>]::try_from(f.0.get())?.neg())
            });
        }
    };

    // try_for_primitive!
    // when `from` is an negative integer and `for` is a non-zero signed primitive
    //
    // Used by:
    // - for: NonZeroI  from: Nz
    (non0neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_for_primitive![@non0neg_non0 for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@non0neg_non0 for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                [<$for$for_b>]::new([<i$for_b>]::try_from(f.0.get())?.neg())
                    .ok_or(Self::Error::Conversion)
            });
        }
    };
}
/// No-op alternative for disabling `TryFrom` impls.
#[cfg(not(feature = "try_from"))]
macro_rules! try_for_primitive {
    ($($tt:tt)*) => {};
}
pub(crate) use try_for_primitive;

/// Implements `TryFrom`: from any, for any.
///
/// # Args
/// - `$for`:    the base name of the target. e.g. `NonZeroInteger`.
/// - `$for_b`:  the bit size of the target. e.g. `16`.
/// - `$from`:   the base name of the origin. e.g. `u`.
/// - `$from_b`: a list of bit sizes of the origin. e.g. `8, 16`.
///
/// # Examples
/// ```ignore
/// try_from_any![zero for: NonPositiveInteger + 8, from: u + 8, 16, 32, 64, 128];
/// ```
///
/// # Branches ids
/// - `zero`
/// - `error`
#[cfg(feature = "try_from")]
macro_rules! try_from_any {
    // try_from_any!
    // when the conversion is only valid when the `from` value is `zero`.
    //
    // Used by:
    // - for: Nnz       from: Npz
    // - for: Npz       from: Nnz, u
    // - for: u         from: Npz
    (zero for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_any![@zero for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@zero
     for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        devela::paste! {
            $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:f, body: {
                if f.is_zero() {
                    Ok([<$for$for_b>]::ZERO)
                } else {
                    Err($crate::error::NumeraErrors::Conversion)
                }
            });
        }
    };

    // try_from_any!
    // when the conversion attempt must always error.
    //
    // Used by:
    // - for: Pz        from: Nz, Npz
    // - for: Nz        from: Nnz, Pz, P
    // - for: Nnz       from: Nz
    // - for: Npz       from: Pz, P
    // - for: u         from: Nz
    // - for: NonZeroU  from: Npz, Nz
    (error for: $for:ident + $for_b:expr, from: $from:ident + $( $from_b:expr ),+) => {
        $( try_from_any![@error for: $for + $for_b, from: $from + $from_b]; )+
    };
    (@error for: $for:ident + $for_b:expr, from: $from:ident + $from_b:expr) => {
        $crate::all::impl_from!(try for: $for+$for_b, from: @$from+$from_b, arg:_f, body: {
            Err($crate::error::NumeraErrors::Conversion)
        });
    };
}
/// No-op alternative for disabling `TryFrom` impls.
#[cfg(not(feature = "try_from"))]
macro_rules! try_from_any {
    ($($tt:tt)*) => {};
}
pub(crate) use try_from_any;