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
// Copyright 2018-2019 Cryptape Technologies LLC.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

use proc_macro2::TokenStream;

mod constructor;
pub use self::constructor::UintConstructor;

mod builtin;
mod extension;
mod internal;

impl UintConstructor {
    pub fn construct_all(&self, ucs: &[Self]) -> (TokenStream, TokenStream) {
        self.clear();

        self.define_kernel();

        self.impl_traits_std_default();
        self.defun_pub_basic();

        self.impl_traits_std_cmp();
        self.defun_priv_ops();
        self.impl_traits_std_ops();
        self.defun_pub_math();

        self.defun_priv_conv();
        self.defun_pub_conv();
        self.impl_traits_std_convert();

        self.defun_as_prim();
        self.impl_traits_std_fmt();
        self.impl_traits_std_hash();
        self.impl_traits_std_iter();

        self.with_rand();
        self.with_heapsize();
        self.with_serde();

        self.output(ucs)
    }
}