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
#![feature(allocator_api)]
#![feature(const_trait_impl)]
#![feature(never_type)]
#![feature(nonnull_slice_from_raw_parts)]
#![feature(slice_ptr_get)]
#![feature(slice_ptr_len)]
#![deny(warnings)]
#![doc(test(attr(deny(warnings))))]
#![doc(test(attr(allow(dead_code))))]
#![doc(test(attr(allow(unused_variables))))]
#![allow(clippy::collapsible_else_if)]
#![no_std]
#[cfg(feature="alloc")]
extern crate alloc as alloc_crate;
mod base;
pub use base::*;
pub mod or;
pub mod up_to;
#[cfg(feature="alloc")]
mod global;
#[cfg(feature="alloc")]
pub use global::*;
mod impossible;
pub use impossible::*;
mod non_working;
pub use non_working::*;
pub mod stacked;
pub mod freelist;