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

#[macro_use]
extern crate cfg_if;

#[cfg(all(not(feature = "std"), feature = "collections"))]
extern crate collections;

extern crate iter_trait;

pub mod entry;
pub mod get;

pub use entry::*;
pub use get::*;

mod impls;