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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
//! By-reference filtering and partitioning of structures.
//!
//! ### Examples
//!
//! ```
//! use fp_library::{
//! brands::*,
//! functions::explicit::*,
//! };
//!
//! let v = vec![1, 2, 3, 4, 5];
//! let result =
//! filter_map::<VecBrand, _, _, _, _>(|x: &i32| if *x > 3 { Some(*x) } else { None }, &v);
//! assert_eq!(result, vec![4, 5]);
//! ```
#[fp_macros::document_module]
mod inner {
use {
crate::{
classes::*,
kinds::*,
},
fp_macros::*,
};
/// By-reference filtering of structures.
///
/// Similar to [`Filterable`], but closures receive `&A` instead of `A`.
/// This enables filtering collections by reference without consuming elements,
/// or filtering memoized types that only provide `&A` access.
///
/// Default implementations derive:
/// * `ref_partition_map` from `ref_map` + `separate` (via `Compactable`).
/// * `ref_partition` from `ref_partition_map`.
/// * `ref_filter_map` from `ref_map` + `compact` (via `Compactable`).
/// * `ref_filter` from `ref_filter_map`.
#[kind(type Of<'a, A: 'a>: 'a;)]
pub trait RefFilterable: RefFunctor + Compactable {
/// Partitions a structure by reference using a function that returns `Result`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The type of the elements in the input structure.",
"The type of the error values.",
"The type of the success values."
)]
///
#[document_parameters(
"The function to apply to each element reference, returning a `Result`.",
"The structure to partition."
)]
///
#[document_returns("A pair of (errors, successes).")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let (small, big) = partition_map::<VecBrand, _, _, _, _, _>(
/// |x: &i32| if *x > 3 { Ok(*x) } else { Err(*x) },
/// &v,
/// );
/// assert_eq!(big, vec![4, 5]);
/// assert_eq!(small, vec![1, 2, 3]);
/// ```
fn ref_partition_map<'a, A: 'a, E: 'a, O: 'a>(
func: impl Fn(&A) -> Result<O, E> + 'a,
fa: &Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> (
Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, E>),
Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, O>),
) {
Self::separate::<E, O>(Self::ref_map::<A, Result<O, E>>(func, fa))
}
/// Partitions a structure by reference using a predicate.
///
/// Returns `(not_satisfied, satisfied)`, matching Rust's `Iterator::partition`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The type of the elements in the structure."
)]
///
#[document_parameters("The predicate function.", "The structure to partition.")]
///
#[document_returns("A pair of (not satisfied, satisfied).")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let (small, big) = partition::<VecBrand, _, _, _>(|x: &i32| *x > 3, &v);
/// assert_eq!(big, vec![4, 5]);
/// assert_eq!(small, vec![1, 2, 3]);
/// ```
fn ref_partition<'a, A: 'a + Clone>(
func: impl Fn(&A) -> bool + 'a,
fa: &Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> (
Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) {
Self::ref_partition_map(
move |a: &A| {
if func(a) { Ok(a.clone()) } else { Err(a.clone()) }
},
fa,
)
}
/// Maps a function over a structure by reference and filters out `None` results.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The type of the elements in the input structure.",
"The type of the elements in the output structure."
)]
///
#[document_parameters(
"The function to apply to each element reference, returning an `Option`.",
"The structure to filter and map."
)]
///
#[document_returns("The structure with `None` results removed.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let result =
/// filter_map::<VecBrand, _, _, _, _>(|x: &i32| if *x > 3 { Some(*x) } else { None }, &v);
/// assert_eq!(result, vec![4, 5]);
/// ```
fn ref_filter_map<'a, A: 'a, B: 'a>(
func: impl Fn(&A) -> Option<B> + 'a,
fa: &Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, B>) {
Self::compact::<B>(Self::ref_map::<A, Option<B>>(func, fa))
}
/// Filters a structure by reference using a predicate.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The type of the elements in the structure."
)]
///
#[document_parameters("The predicate function.", "The structure to filter.")]
///
#[document_returns("The structure with elements not satisfying the predicate removed.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let result = filter::<VecBrand, _, _, _>(|x: &i32| *x > 3, &v);
/// assert_eq!(result, vec![4, 5]);
/// ```
fn ref_filter<'a, A: 'a + Clone>(
func: impl Fn(&A) -> bool + 'a,
fa: &Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>) {
Self::ref_filter_map(move |a: &A| if func(a) { Some(a.clone()) } else { None }, fa)
}
}
/// Partitions by reference using a function returning `Result`.
///
/// Free function version that dispatches to [the type class' associated function][`RefFilterable::ref_partition_map`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The brand of the structure.",
"The type of the elements.",
"The error type.",
"The success type."
)]
///
#[document_parameters("The partitioning function.", "The structure to partition.")]
///
#[document_returns("A pair of (errors, successes).")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let (small, big) = partition_map::<VecBrand, _, _, _, _, _>(
/// |x: &i32| if *x > 3 { Ok(*x) } else { Err(*x) },
/// &v,
/// );
/// assert_eq!(big, vec![4, 5]);
/// assert_eq!(small, vec![1, 2, 3]);
/// ```
pub fn ref_partition_map<'a, Brand: RefFilterable, A: 'a, E: 'a, O: 'a>(
func: impl Fn(&A) -> Result<O, E> + 'a,
fa: &Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> (
Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, E>),
Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, O>),
) {
Brand::ref_partition_map(func, fa)
}
/// Partitions by reference using a predicate.
///
/// Free function version that dispatches to [the type class' associated function][`RefFilterable::ref_partition`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The brand of the structure.",
"The type of the elements."
)]
///
#[document_parameters("The predicate.", "The structure to partition.")]
///
#[document_returns("A pair of (not satisfied, satisfied).")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let (small, big) = partition::<VecBrand, _, _, _>(|x: &i32| *x > 3, &v);
/// assert_eq!(big, vec![4, 5]);
/// assert_eq!(small, vec![1, 2, 3]);
/// ```
pub fn ref_partition<'a, Brand: RefFilterable, A: 'a + Clone>(
func: impl Fn(&A) -> bool + 'a,
fa: &Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> (
Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) {
Brand::ref_partition(func, fa)
}
/// Maps by reference and filters out `None` results.
///
/// Free function version that dispatches to [the type class' associated function][`RefFilterable::ref_filter_map`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The brand of the structure.",
"The type of the input elements.",
"The type of the output elements."
)]
///
#[document_parameters("The filter-map function.", "The structure to filter.")]
///
#[document_returns("The filtered structure.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let result =
/// filter_map::<VecBrand, _, _, _, _>(|x: &i32| if *x > 3 { Some(*x) } else { None }, &v);
/// assert_eq!(result, vec![4, 5]);
/// ```
pub fn ref_filter_map<'a, Brand: RefFilterable, A: 'a, B: 'a>(
func: impl Fn(&A) -> Option<B> + 'a,
fa: &Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, B>) {
Brand::ref_filter_map(func, fa)
}
/// Filters by reference using a predicate.
///
/// Free function version that dispatches to [the type class' associated function][`RefFilterable::ref_filter`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the elements.",
"The brand of the structure.",
"The type of the elements."
)]
///
#[document_parameters("The predicate.", "The structure to filter.")]
///
#[document_returns("The filtered structure.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let v = vec![1, 2, 3, 4, 5];
/// let result = filter::<VecBrand, _, _, _>(|x: &i32| *x > 3, &v);
/// assert_eq!(result, vec![4, 5]);
/// ```
pub fn ref_filter<'a, Brand: RefFilterable, A: 'a + Clone>(
func: impl Fn(&A) -> bool + 'a,
fa: &Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>),
) -> Apply!(<Brand as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, A>) {
Brand::ref_filter(func, fa)
}
}
pub use inner::*;