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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
#![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,
)]
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;
}