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
//! Niche and advanced, you can ignore this to begin with.
//! Module for other [`ForLt`]-like constructs: extended to various "arities".
//!
//! For instance:
//!   - [`ForTy`] so as to be generic over a type parameter,
//!   - [`ForLtAndLt`] so as to be generic over _two_ lifetime parameters,
//!   - [`ForLtAndTy`] so as to be generic over a lifetime parameter and a type
//!     parameter.
//!
//! [`ForLt`]: trait@ForLt

#[doc(inline)]
pub use crate::ForLifetime as ForLt;

/// Genericity over a _type_ parameter.
///
/// Note: producing an <code>impl [ForTy]</code> type is not as easy as for
/// an <code>impl [ForLt]</code> type or an <code>impl [ForLtAndLt]</code> type.
///
/// Indeed, these can be done by the [`For!`] macro, internally, thanks to the
/// `for<'lifetimes…>`-quantification that Rust offers.
///
/// Alas, there is no `for<T>`-quantification in Rust (yet?).
///
/// Thence the need to manually define a new type for which to write a dedicated
/// <code>impl [ForTy] for ThatType {</code> item.
///
/// Since this is a bit cumbersome, the [`new_For_type!`] convenience macro is
/// offered to let it take care of the red tape.
///
/// See its documentation for more info.
///
/// [ForLt]: trait@ForLt
pub
trait ForTy : Send + Sync + Unpin {
    type Of<T>;
}

/// Genericity over _two_ lifetime parameters.
///
/// It cannot be manually implemented: the only types implementing this trait
/// are the ones produced by the [`For!`] macro.
///
/// ## Examples
///
/// ```rust
/// use {
///     ::core::{
///         future::{self, Future},
///         task::Context,
///     },
///     ::higher_kinded_types::{
///         extra_arities::*,
///     },
/// };
///
/// /// An `impl ForLtAndLt` yielding `&mut Context<'_>`.
/// type RefMutContext = For!(<'r, 'cx> = &'r mut Context<'cx>);
///
/// async fn demo() {
///     let mut sub_future = Box::pin(sub_future()); // or `pin!`
///     future::poll_fn(|cx: <RefMutContext as ForLtAndLt>::Of<'_, '_>| {
///         sub_future.as_mut().poll(cx)
///     }).await
/// }
///
/// async fn sub_future() {
///     // …
/// }
/// ```
pub
trait ForLtAndLt : for_lt_and_lt::Sealed {
    type Of<'a, 'b>;
}

/// Genericity over a _lifetime_ and a _type_ parameters.
///
/// Note: the same remarks as for [`ForTy`] apply here: see [`new_For_type!`]'s
/// documentation for more info and examples about defining and using such
/// types.
pub
trait ForLtAndTy : Send + Sync + Unpin {
    type Of<'lt, T : 'lt>;
}

/// Variadic version of [`crate::ForLt!`], suitable for the [`For…` traits of
/// this module][self#traits].
///
/// ### Syntax
///
///   - #### `ForLt`
///
///     ```rust
///     # use ::higher_kinded_types::extra_arities::For;
///     # mod some { pub use ::std::borrow::Cow as Arbitrary; }
///     # use str as Type; let _:
///     For!(<'r> = some::Arbitrary<'r, Type>)
///     # ;
///     ```
///
///       - Notice how there deliberately is no _shorthand syntax_ available
///         (for the sake of readability). Use [`crate::ForLt!`] for that.
///
///   - #### `ForLtAndLt`
///
///     ```rust
///     # use ::higher_kinded_types::extra_arities::For;
///     # mod some { pub type Arbitrary<'a, 'b, T> = &'a &'b T; }
///     # use str as Type; let _:
///     For!(<'a, 'b> = some::Arbitrary<'a, 'b, Type>)
///     # ;
///     ```
///
///   - #### `ForTy`
///
///       - ⚠️ to be used inside a [`new_For_type!`] invocation!
///
///     ```rust
///     # #[cfg(any())] macro_rules! ignore {
///     For!(<T> = Vec<T>)
///     # }
///     ```
///
///   - #### `ForLtAndTy`
///
///       - ⚠️ to be used inside a [`new_For_type!`] invocation!
///
///     ```rust
///     # #[cfg(any())] macro_rules! ignore {
///     For!(<'r, T> = &'r mut T)
///     # }
///     ```
#[macro_export] #[doc(hidden)]
macro_rules! ඞFor_ {
    (
        $($implementation_details_hidden:tt)*
    ) => (
        $crate::ඞFor! { $($implementation_details_hidden)* }
    );
} #[doc(inline)] pub use ඞFor_ as For;

#[doc(hidden)]
#[macro_export]
macro_rules! ඞFor {
    (
        <$lt:lifetime> = $Type:ty $(,)?
    ) => (
        $crate::ForLt! { <$lt> = $Type }
    );

    (
        <$a:lifetime, $b:lifetime> = $Type:ty $(,)?
    ) => (
        $crate::ඞ::ForLtAndLt<
            dyn for<$a, $b> $crate::ඞ::WithLifetimes<$a, $b, T = $Type>,
        >
    );

    (
        <$($lt:lifetime ,)? $T:ident> = $Type:ty $(,)?
    ) => (
        ::core::compile_error! { concat!("Usage:
new_For_type! {
    /// Attrs…
    pub type TypeName = For!(
        ", stringify!(<$($lt ,)? $T> = $Type), "
    );
}\
        ")}
    );

    (
        #[name($pub:tt $Name:ident)]
        $(#$attr:tt)*
        <$T:ident> = $Type:ty $(,)?
    ) => (
        $(#$attr)*
        $pub
        struct $Name(fn(&()) -> &mut Self);

        impl $crate::extra_arities::ForTy for $Name {
            type Of<$T> = $Type;
        }
    );

    (
        #[name($pub:tt $Name:ident)]
        $(#$attr:tt)*
        <$lt:lifetime, $T:ident> = $Type:ty $(,)?
    ) => (
        $(#$attr)*
        $pub
        struct $Name(fn(&()) -> &mut Self);

        impl $crate::extra_arities::ForLtAndTy for $Name {
            type Of<$lt, $T : $lt> = $Type;
        }
    );

    (
        #[name($pub:tt $Name:ident)]
        $(#$attr:tt)*
        < $($rest:tt)*
    ) => (
        $(#$attr)*
        $pub type $Name = $crate::extra_arities::For!(< $($rest)* );
    );
}

/// Define (new) `type`s with the desired `For` semantics.
///
/// For technical reasons (lack of `for<T>` quantification), this more
/// roundabout syntax is needed for `For` types involving _type_ genericity.
///
/// ## Examples
///
/// ### `ForTy`
///
/// ```rust
/// use ::higher_kinded_types::extra_arities::*;
///
/// new_For_type! {
///     /// Attributes such as docstrings are obviously allowed.
///     pub type GenericVec = For!(<T> = Vec<T>);
///
///     pub type GenericOption = For!(<T> = Option<T>);
///     pub type GenericBool = For!(<T> = bool);
/// }
///
/// struct HktExample<Collection: ForTy> {
///     ints: Collection::Of<i32>,
///     strings: Collection::Of<String>,
/// }
///
/// let v = HktExample::<GenericVec> {
///     ints: vec![42, 27],
///     strings: vec!["Hello,".into(), "World!".into()],
/// };
///
/// let o = HktExample::<GenericOption> {
///     ints: Some(42),
///     strings: None,
/// };
///
/// let b = HktExample::<GenericBool> {
///     ints: false,
///     strings: true,
/// };
/// ```
///
/// ### `ForLtAndTy`
///
/// ```rust
/// use ::higher_kinded_types::extra_arities::*;
///
/// new_For_type! {
///     type SharedRef = For!(<'r, T> = &'r T);
///     type ExclusiveRef = For!(<'r, T> = &'r mut T);
/// }
///
/// trait IterMaybeMut<Ref: ForLtAndTy> : Sized {
///     type Item;
///
///     fn iter<'r>(this: Ref::Of<'r, Self>)
///       -> Box<dyn 'r + Iterator<Item = Ref::Of<'r, Self::Item>>>
///     where
///         Self : 'r,
///         Self::Item : 'r,
///     ;
/// }
///
/// impl<T> IterMaybeMut<SharedRef> for Vec<T> {
///     type Item = T;
///
///     fn iter<'r>(this: &'r Vec<T>)
///       -> Box<dyn 'r + Iterator<Item = &'r T>>
///     where
///         Self : 'r,
///         Self::Item : 'r,
///     {
///         Box::new(this.into_iter())
///     }
/// }
///
/// impl<T> IterMaybeMut<ExclusiveRef> for Vec<T> {
///     type Item = T;
///
///     fn iter<'r>(this: &'r mut Vec<T>)
///       -> Box<dyn 'r + Iterator<Item = &'r mut T>>
///     where
///         Self : 'r,
///         Self::Item : 'r,
///     {
///         Box::new(this.into_iter())
///     }
/// }
///
///
/// /// This function is a `iter{,_mut}().for_each()` on `Vec<T>` which is
/// /// generic over the `mut`-ness! It handles `&Vec<T>` and `&mut Vec<T>`! 🔥
/// fn vec_for_each<'r, T, Ref : ForLtAndTy>(
///     vec: Ref::Of<'_, Vec<T>>,
///     mut f: impl FnMut(usize, Ref::Of<'_, T>),
/// )
/// where
///     Vec<T> : IterMaybeMut<Ref, Item = T>,
/// {
///     IterMaybeMut::<Ref>::iter(vec)
///         .enumerate()
///         .for_each(|(i, x)| f(i, x))
/// }
///
/// let mut vec = vec![16, 42, 0];
/// vec_for_each::<i32, ExclusiveRef>(&mut vec, |_, x| *x += 27);
/// vec_for_each::<i32, SharedRef>(&vec, |i, &x| {
///     println!("{x}");
///     if i == 1 {
///         assert_eq!(x, 42 + 27);
///     }
/// });
///
/// // Actually, usage of `'r` is not mandatory:
/// new_For_type! {
///     type Owned = For!(<'r, T> = T);
/// }
///
/// impl<T> IterMaybeMut<Owned> for Vec<T> {
///     type Item = T;
///
///     fn iter<'r>(this: Vec<T>)
///       -> Box<dyn 'r + Iterator<Item = T>>
///     where
///         Self : 'r,
///         Self::Item : 'r,
///     {
///         Box::new(this.into_iter())
///     }
/// }
///
/// //                                          owned!
/// //                                          vvv
/// vec_for_each::<i32, Owned>(vec, |_, _owned: i32| {});
/// ```
#[macro_export] #[doc(hidden)]
macro_rules! ඞnew_For_type {(
    $(
        $( #$attr:tt )*
        $pub:vis
        type $Name:ident =
            $($(@$if_leading:tt)?
                ::
            )?
            $($macro:ident)::+ ! ( $($args:tt)* )
        ;
    )*
) => (
    $(
        $($($if_leading)? :: )? $($macro)::+ ! {
            #[name($pub $Name)]
            $(#$attr)*
            $($args)*
        }
    )*
)} #[doc(inline)] pub use ඞnew_For_type as new_For_type;

pub(crate)
mod for_lt_and_lt {
    pub trait Sealed : Send + Sync + Unpin {}

    pub trait WithLifetimes<'a, 'b> {
        type T;
    }

    impl<T : ?Sized>
        Sealed
    for
        crate::ඞ::ForLtAndLt<T>
    where
        T : for<'a, 'b> WithLifetimes<'a, 'b>,
    {}

    impl<T : ?Sized>
        super::ForLtAndLt
    for
        crate::ඞ::ForLtAndLt<T>
    where
        T : for<'a, 'b> WithLifetimes<'a, 'b>,
    {
        type Of<'a, 'b> = <T as WithLifetimes<'a, 'b>>::T;
    }
}