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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
//! Profunctors, which are functors contravariant in the first argument and covariant in the second.
//!
//! A profunctor represents a morphism between two categories, mapping objects and morphisms from one to the other.
//!
//! ### Examples
//!
//! ```
//! use fp_library::{
//! brands::*,
//! functions::*,
//! };
//!
//! // Arrow is a profunctor
//! let f = |x: i32| x + 1;
//! let g = dimap::<RcFnBrand, _, _, _, _>(
//! |x: i32| x * 2,
//! |x: i32| x - 1,
//! std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
//! );
//! assert_eq!(g(10), 20); // (10 * 2) + 1 - 1 = 20
//! ```
pub use {
choice::*,
closed::*,
cochoice::*,
costrong::*,
strong::*,
wander::*,
};
pub mod choice;
pub mod closed;
pub mod cochoice;
pub mod costrong;
pub mod strong;
pub mod wander;
#[fp_macros::document_module]
mod inner {
use {
crate::{
brands::*,
classes::*,
kinds::*,
},
fp_macros::*,
};
/// A type class for profunctors.
///
/// A profunctor is a type constructor that is contravariant in its first type parameter
/// and covariant in its second type parameter. This means it can pre-compose with a
/// function on the input and post-compose with a function on the output.
///
/// ### Hierarchy Unification
///
/// This trait is the root of the unified profunctor and arrow hierarchies on
/// [`Kind!(type Of<'a, A: 'a, B: 'a>: 'a;)`](crate::kinds::Kind_266801a817966495).
/// This unification ensures that all profunctor-based abstractions
/// (including lenses and prisms) share a consistent higher-kinded representation with
/// strict lifetime bounds.
///
/// By explicitly requiring that both type parameters outlive the application lifetime `'a`,
/// we provide the compiler with the necessary guarantees to handle trait objects
/// (like `dyn Fn`) commonly used in profunctor implementations. This resolves potential
/// E0310 errors where the compiler cannot otherwise prove that captured variables in
/// closures satisfy the required lifetime bounds.
///
/// ### Laws
///
/// `Profunctor` instances must satisfy the following laws:
/// * Identity: `dimap(identity, identity, p) = p`.
/// * Composition: `dimap(f2 ∘ f1, g1 ∘ g2, p) = dimap(f1, g1, dimap(f2, g2, p))`.
#[document_examples]
///
/// Profunctor laws for [`RcFnBrand`](crate::brands::RcFnBrand):
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let p = std::rc::Rc::new(|x: i32| x + 1) as std::rc::Rc<dyn Fn(i32) -> i32>;
///
/// // Identity: dimap(identity, identity, p) = p
/// let id_mapped = dimap::<RcFnBrand, _, _, _, _>(identity, identity, p.clone());
/// assert_eq!(id_mapped(5), p(5));
/// assert_eq!(id_mapped(0), p(0));
///
/// // Composition: dimap(f2 ∘ f1, g1 ∘ g2, p)
/// // = dimap(f1, g1, dimap(f2, g2, p))
/// let f1 = |x: i32| x + 10;
/// let f2 = |x: i32| x * 2;
/// let g1 = |x: i32| x - 1;
/// let g2 = |x: i32| x * 3;
/// let left = dimap::<RcFnBrand, _, _, _, _>(
/// compose(f2, f1), // f2 ∘ f1
/// compose(g1, g2), // g1 ∘ g2
/// p.clone(),
/// );
/// let right = dimap::<RcFnBrand, _, _, _, _>(f1, g1, dimap::<RcFnBrand, _, _, _, _>(f2, g2, p));
/// assert_eq!(left(5), right(5));
/// assert_eq!(left(0), right(0));
/// ```
#[kind(type Of<'a, A: 'a, B: 'a>: 'a;)]
pub trait Profunctor {
/// Maps over both arguments of the profunctor.
///
/// This method applies a contravariant function to the first argument and a covariant
/// function to the second argument, transforming the profunctor.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the values.",
"The new input type (contravariant position).",
"The original input type.",
"The original output type.",
"The new output type (covariant position)."
)]
///
#[document_parameters(
"The contravariant function to apply to the input.",
"The covariant function to apply to the output.",
"The profunctor instance."
)]
///
#[document_returns("A new profunctor instance with transformed input and output types.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::profunctor::*,
/// functions::*,
/// };
///
/// let f = |x: i32| x + 1;
/// let g = dimap::<RcFnBrand, _, _, _, _>(
/// |x: i32| x * 2,
/// |x: i32| x - 1,
/// std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
/// );
/// assert_eq!(g(10), 20); // (10 * 2) + 1 - 1 = 20
/// ```
fn dimap<'a, A: 'a, B: 'a, C: 'a, D: 'a>(
ab: impl Fn(A) -> B + 'a,
cd: impl Fn(C) -> D + 'a,
pbc: Apply!(<Self as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, B, C>),
) -> Apply!(<Self as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, D>);
/// Maps contravariantly over the first argument.
///
/// This is a convenience method that maps only over the input (contravariant position).
/// Corresponds to `lmap` in Haskell and `lcmap` in PureScript.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the values.",
"The new input type.",
"The original input type.",
"The output type."
)]
///
#[document_parameters(
"The contravariant function to apply to the input.",
"The profunctor instance."
)]
///
#[document_returns("A new profunctor instance with transformed input type.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::profunctor::*,
/// functions::*,
/// };
///
/// let f = |x: i32| x + 1;
/// let g = map_input::<RcFnBrand, _, _, _>(
/// |x: i32| x * 2,
/// std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
/// );
/// assert_eq!(g(10), 21); // (10 * 2) + 1 = 21
/// ```
fn map_input<'a, A: 'a, B: 'a, C: 'a>(
ab: impl Fn(A) -> B + 'a,
pbc: Apply!(<Self as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, B, C>),
) -> Apply!(<Self as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, C>) {
Self::dimap(ab, crate::functions::identity, pbc)
}
/// Maps covariantly over the second argument.
///
/// This is a convenience method that maps only over the output (covariant position).
/// Corresponds to `rmap` in both Haskell and PureScript.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the values.",
"The input type.",
"The original output type.",
"The new output type."
)]
///
#[document_parameters(
"The covariant function to apply to the output.",
"The profunctor instance."
)]
///
#[document_returns("A new profunctor instance with transformed output type.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::profunctor::*,
/// functions::*,
/// };
///
/// let f = |x: i32| x + 1;
/// let g = map_output::<RcFnBrand, _, _, _>(
/// |x: i32| x * 2,
/// std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
/// );
/// assert_eq!(g(10), 22); // (10 + 1) * 2 = 22
/// ```
fn map_output<'a, A: 'a, B: 'a, C: 'a>(
bc: impl Fn(B) -> C + 'a,
pab: Apply!(<Self as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, B>),
) -> Apply!(<Self as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, C>) {
Self::dimap(crate::functions::identity, bc, pab)
}
}
/// Maps over both arguments of the profunctor.
///
/// Free function version that dispatches to [the type class' associated function][`Profunctor::dimap`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the values.",
"The brand of the profunctor.",
"The new input type (contravariant position).",
"The original input type.",
"The original output type.",
"The new output type (covariant position)."
)]
///
#[document_parameters(
"The contravariant function to apply to the input.",
"The covariant function to apply to the output.",
"The profunctor instance."
)]
///
#[document_returns("A new profunctor instance with transformed input and output types.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::profunctor::*,
/// functions::*,
/// };
///
/// let f = |x: i32| x + 1;
/// let g = dimap::<RcFnBrand, _, _, _, _>(
/// |x: i32| x * 2,
/// |x: i32| x - 1,
/// std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
/// );
/// assert_eq!(g(10), 20); // (10 * 2) + 1 - 1 = 20
/// ```
pub fn dimap<'a, Brand: Profunctor, A: 'a, B: 'a, C: 'a, D: 'a>(
ab: impl Fn(A) -> B + 'a,
cd: impl Fn(C) -> D + 'a,
pbc: Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, B, C>),
) -> Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, D>) {
Brand::dimap(ab, cd, pbc)
}
/// Maps contravariantly over the first argument.
///
/// Corresponds to `lmap` in Haskell and `lcmap` in PureScript.
///
/// Free function version that dispatches to [the type class' associated function][`Profunctor::map_input`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the values.",
"The brand of the profunctor.",
"The new input type.",
"The original input type.",
"The output type."
)]
///
#[document_parameters(
"The contravariant function to apply to the input.",
"The profunctor instance."
)]
///
#[document_returns("A new profunctor instance with transformed input type.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::profunctor::*,
/// functions::*,
/// };
///
/// let f = |x: i32| x + 1;
/// let g = map_input::<RcFnBrand, _, _, _>(
/// |x: i32| x * 2,
/// std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
/// );
/// assert_eq!(g(10), 21); // (10 * 2) + 1 = 21
/// ```
pub fn map_input<'a, Brand: Profunctor, A: 'a, B: 'a, C: 'a>(
ab: impl Fn(A) -> B + 'a,
pbc: Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, B, C>),
) -> Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, C>) {
Brand::map_input(ab, pbc)
}
/// Maps covariantly over the second argument.
///
/// Corresponds to `rmap` in both Haskell and PureScript.
///
/// Free function version that dispatches to [the type class' associated function][`Profunctor::map_output`].
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the values.",
"The brand of the profunctor.",
"The input type.",
"The original output type.",
"The new output type."
)]
///
#[document_parameters(
"The covariant function to apply to the output.",
"The profunctor instance."
)]
///
#[document_returns("A new profunctor instance with transformed output type.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// classes::profunctor::*,
/// functions::*,
/// };
///
/// let f = |x: i32| x + 1;
/// let g = map_output::<RcFnBrand, _, _, _>(
/// |x: i32| x * 2,
/// std::rc::Rc::new(f) as std::rc::Rc<dyn Fn(i32) -> i32>,
/// );
/// assert_eq!(g(10), 22); // (10 + 1) * 2 = 22
/// ```
pub fn map_output<'a, Brand: Profunctor, A: 'a, B: 'a, C: 'a>(
bc: impl Fn(B) -> C + 'a,
pab: Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, B>),
) -> Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, C>) {
Brand::map_output(bc, pab)
}
/// Lifts a pure function into a profunctor context.
///
/// Given a type that is both a [`Category`] (providing `identity`) and a
/// [`Profunctor`] (providing `map_output`), this function lifts a pure function
/// `A -> B` into the profunctor as `map_output(f, identity())`.
#[document_signature]
///
#[document_type_parameters(
"The lifetime of the function and its captured data.",
"The brand of the profunctor.",
"The input type.",
"The output type."
)]
///
#[document_parameters("The closure to lift.")]
///
#[document_returns("The lifted profunctor value.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::*,
/// };
///
/// let f = arrow::<RcFnBrand, _, _>(|x: i32| x * 2);
/// assert_eq!(f(5), 10);
/// ```
pub fn arrow<'a, Brand, A, B: 'a>(
f: impl 'a + Fn(A) -> B
) -> Apply!(<Brand as Kind!( type Of<'a, T: 'a, U: 'a>: 'a; )>::Of<'a, A, B>)
where
Brand: Category + Profunctor, {
Brand::map_output(f, Brand::identity())
}
crate::impl_kind! {
impl<Brand: Profunctor, A: 'static> for ProfunctorFirstAppliedBrand<Brand, A> {
type Of<'a, B: 'a>: 'a = Apply!(<Brand as Kind!(type Of<'a, T: 'a, U: 'a>: 'a;)>::Of<'a, A, B>);
}
}
/// [`Functor`] instance for [`ProfunctorFirstAppliedBrand`].
///
/// Maps over the second (covariant) type parameter of a profunctor via [`Profunctor::map_output`].
#[document_type_parameters("The profunctor brand.", "The fixed first type parameter.")]
impl<Brand: Profunctor, A: 'static> Functor for ProfunctorFirstAppliedBrand<Brand, A> {
/// Map a function over the covariant type parameter.
#[document_signature]
#[document_type_parameters(
"The lifetime of the values.",
"The input type.",
"The output type."
)]
#[document_parameters("The function to apply.", "The profunctor value to map over.")]
#[document_returns("The mapped profunctor value.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::*,
/// };
///
/// let f = std::rc::Rc::new(|x: i32| x + 1) as std::rc::Rc<dyn Fn(i32) -> i32>;
/// let g = map::<ProfunctorFirstAppliedBrand<RcFnBrand, i32>, _, _, _, _>(|x: i32| x * 2, f);
/// assert_eq!(g(5), 12); // (5 + 1) * 2
/// ```
fn map<'a, B: 'a, C: 'a>(
f: impl Fn(B) -> C + 'a,
fa: Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, B>),
) -> Apply!(<Self as Kind!( type Of<'a, T: 'a>: 'a; )>::Of<'a, C>) {
Brand::map_output(f, fa)
}
}
impl_kind! {
impl<Brand: Profunctor, B: 'static> for ProfunctorSecondAppliedBrand<Brand, B> {
type Of<'a, A: 'a>: 'a = Apply!(<Brand as Kind!(type Of<'a, T: 'a, U: 'a>: 'a;)>::Of<'a, A, B>);
}
}
/// [`Contravariant`] instance for [`ProfunctorSecondAppliedBrand`].
///
/// Contramaps over the first (contravariant) type parameter of a profunctor via [`Profunctor::map_input`].
#[document_type_parameters("The profunctor brand.", "The fixed second type parameter.")]
impl<Brand: Profunctor, B: 'static> Contravariant for ProfunctorSecondAppliedBrand<Brand, B> {
/// Contramap a function over the contravariant type parameter.
#[document_signature]
#[document_type_parameters(
"The lifetime of the values.",
"The input type.",
"The output type."
)]
#[document_parameters("The function to apply.", "The profunctor value to contramap over.")]
#[document_returns("The contramapped profunctor value.")]
#[document_examples]
///
/// ```
/// use fp_library::{
/// brands::*,
/// functions::explicit::contramap,
/// };
///
/// let f = std::rc::Rc::new(|x: i32| x + 1) as std::rc::Rc<dyn Fn(i32) -> i32>;
/// let g =
/// contramap::<ProfunctorSecondAppliedBrand<RcFnBrand, i32>, _, _, _, _>(|x: i32| x * 2, f);
/// assert_eq!(g(5), 11); // (5 * 2) + 1
/// ```
fn contramap<'a, A: 'a, C: 'a>(
f: impl Fn(C) -> A + '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, C>) {
Brand::map_input(f, fa)
}
}
}
pub use inner::*;