1#![cfg_attr(all(not(feature = "std"), feature = "collections"), feature(collections))]
2#![cfg_attr(not(feature = "std"), feature(core_slice_ext))]
3#![cfg_attr(not(feature = "std"), no_std)]
4#![doc(html_root_url = "https://docs.charr.xyz/get-trait/")]
5#![deny(warnings)]
6
7#[macro_use]
8extern crate cfg_if;
9
10#[cfg(all(not(feature = "std"), feature = "collections"))]
11extern crate collections;
12
13extern crate iter_trait;
14
15pub mod entry;
16pub mod get;
17
18pub use entry::*;
19pub use get::*;
20
21mod impls;