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
//! Implementation detail of the `konst` crate.
#![no_std]
#![cfg_attr(feature = "deref_raw_in_fn", feature(const_fn_union))]

#[macro_use]
mod option_macros_;

#[macro_use]
mod result_macros_;

#[macro_use]
#[doc(hidden)]
pub mod slice_;

#[doc(hidden)]
pub mod utils;

#[doc(hidden)]
pub mod __ {
    pub use core::{
        cmp::Ordering::{self, Equal, Greater, Less},
        compile_error,
        marker::PhantomData,
        matches,
        mem::transmute,
        ops::Range,
        option::Option::{self, None, Some},
        primitive::u8,
        result::Result::{self, Err, Ok},
    };
}