MCPcopy Create free account
hub / github.com/cryptape/rust-numext / construct_all

Method construct_all

constructor/src/fixed_uint/core/mod.rs:19–46  ·  view source on GitHub ↗
(&self, ucs: &[Self])

Source from the content-addressed store, hash-verified

17
18impl UintConstructor {
19 pub fn construct_all(&self, ucs: &[Self]) -> (TokenStream, TokenStream) {
20 self.clear();
21
22 self.define_kernel();
23
24 self.impl_traits_std_default();
25 self.defun_pub_basic();
26
27 self.impl_traits_std_cmp();
28 self.defun_priv_ops();
29 self.impl_traits_std_ops();
30 self.defun_pub_math();
31
32 self.defun_priv_conv();
33 self.defun_pub_conv();
34 self.impl_traits_std_convert();
35
36 self.defun_as_prim();
37 self.impl_traits_std_fmt();
38 self.impl_traits_std_hash();
39 self.impl_traits_std_iter();
40
41 self.with_rand();
42 self.with_heapsize();
43 self.with_serde();
44
45 self.output(ucs)
46 }
47}

Callers 2

construct_fixed_uintsFunction · 0.45
construct_fixed_hashesFunction · 0.45

Calls 15

defun_pub_mathMethod · 0.80
defun_priv_convMethod · 0.80
impl_traits_std_iterMethod · 0.80
clearMethod · 0.45
define_kernelMethod · 0.45
defun_pub_basicMethod · 0.45
impl_traits_std_cmpMethod · 0.45
defun_priv_opsMethod · 0.45
impl_traits_std_opsMethod · 0.45
defun_pub_convMethod · 0.45

Tested by

no test coverage detected