#![cfg_attr(feature = "better-docs",
cfg_attr(all(), doc = include_str!("../README.md")),
feature(doc_cfg),
)]
#"
)]
#![cfg_attr(not(feature = "better-docs"),
doc = "for more info about this crate."
)]
#![cfg_attr(not(doc),
no_std,
)]
#![forbid(unsafe_code)]
pub mod prelude {
#[doc(no_inline)]
pub use crate::{
all, any,
macros::{
lazy_format as f,
iter as i,
},
extension_traits::{
Join as _,
},
};
#[doc(no_inline)]
#[cfg(feature = "std")]
#[cfg_attr(feature = "better-docs",
doc(cfg(feature = "std")),
)]
pub use crate::{
extension_traits::IteratorExt as _,
macros::vec as v,
};
}
pub
mod extension_traits;
pub
mod macros;
#[inline]
pub
fn all (
iterable: impl IntoIterator<Item = bool>,
) -> bool
{
iterable
.into_iter()
.all(::core::convert::identity)
}
#[inline]
pub
fn any (
iterable: impl IntoIterator<Item = bool>,
) -> bool
{
iterable
.into_iter()
.any(::core::convert::identity)
}
#[doc(hidden)] pub
mod __ {
pub use core;
#[cfg(feature = "std")] pub
extern crate std;
}