summaryrefslogtreecommitdiffstats
path: root/compiler/rustc_const_eval/src/util/mod.rs
blob: 76ea5a24e69edd8c1bd09cab7ece7e05eb345302 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
pub mod aggregate;
mod alignment;
mod call_kind;
pub mod collect_writes;
mod compare_types;
mod find_self_call;
mod might_permit_raw_init;
mod type_name;

pub use self::aggregate::expand_aggregate;
pub use self::alignment::is_disaligned;
pub use self::call_kind::{call_kind, CallDesugaringKind, CallKind};
pub use self::compare_types::{is_equal_up_to_subtyping, is_subtype};
pub use self::find_self_call::find_self_call;
pub use self::might_permit_raw_init::might_permit_raw_init;
pub use self::type_name::type_name;