#![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;