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
//! FlatMap.

use core::marker::PhantomData;

use crate::combinator::id;
use crate::constant1;
use crate::functor::Functor;
use crate::higher::Higher;

/// Gives access to the `flat_map` method. The motivation for separating this out of
/// [Monad](super::monad::Monad) is that there are situations where `flat_map` can be implemented
/// but not `pure`.
pub trait FlatMap<B>: Higher {
    /// Maps a function over a value in the context and flattens the resulting nested context.
    /// This is the same  as `self.map(f).flatten()`.
    /// This is also known as `bind` or `>>=` in other languages.
    ///
    /// # Examples
    ///
    /// ```
    /// use rust2fun::prelude::*;
    ///
    /// let x = Some(1);
    /// let actual = x.flat_map(|x| Some(x.to_string()));
    /// assert_eq!(Some("1".to_string()), actual);
    /// ```
    fn flat_map<F>(self, f: F) -> Self::Target<B>
    where
        F: FnMut(Self::Param) -> Self::Target<B>;

    /// Flattens a nested structure.
    /// This is a convenience method for `flat_map(id)`.
    ///
    /// # Examples
    ///
    /// ```
    /// use rust2fun::prelude::*;
    ///
    /// let actual = Some(Some(1)).flatten();
    /// assert_eq!(Some(1), actual);
    /// ```
    #[inline]
    fn flatten(self) -> Self::Target<B>
    where
        Self: FlatMap<B, Param = <Self as Higher>::Target<B>> + Sized,
    {
        self.flat_map(id)
    }

    /// Pair up the value with the result of applying the function to the value.
    ///
    /// # Examples
    /// ```
    /// use rust2fun::prelude::*;
    ///
    /// let x = Some(1);
    /// let actual = x.m_product(|x| Some(x.to_string()));
    /// assert_eq!(Some((1, "1".to_string())), actual);
    /// ```
    fn m_product<F>(self, mut f: F) -> Self::Target<(Self::Param, B)>
    where
        F: FnMut(Self::Param) -> Self::Target<B>,
        Self: FlatMap<(<Self as Higher>::Param, B)> + Sized,
        Self::Param: Copy,
        Self::Target<B>:
            Functor<(Self::Param, B), Target<(Self::Param, B)> = Self::Target<(Self::Param, B)>>,
    {
        self.flat_map(|a| f(a).map(|b| (a, b)))
    }

    /// `if` lifted into monad.
    ///
    /// # Examples
    /// ```
    /// use rust2fun::prelude::*;
    ///
    /// let x = Some(true);
    /// let actual = x.if_m(constant!(Some(1)), constant!(Some(0)));
    /// assert_eq!(Some(1), actual);
    /// ```
    #[inline]
    fn if_m<T, F>(self, mut if_true: T, mut if_false: F) -> Self::Target<B>
    where
        T: FnMut() -> Self::Target<B>,
        F: FnMut() -> Self::Target<B>,
        Self: FlatMap<B, Param = bool> + Sized,
    {
        self.flat_map(|x| if x { if_true() } else { if_false() })
    }

    /// Apply a monadic function and discard the result while keeping the effect.
    ///
    /// # Examples
    /// ```
    /// use rust2fun::prelude::*;
    ///
    /// let x = Some(1);
    /// let actual = x.flat_tap(|x| Some(x.to_string()));
    /// assert_eq!(Some(1), actual);
    /// ```
    fn flat_tap<F>(self, mut f: F) -> Self
    where
        F: FnMut(Self::Param) -> Self::Target<B>,
        Self: FlatMap<<Self as Higher>::Param, Target<<Self as Higher>::Param> = Self> + Sized,
        Self::Param: Copy,
        Self::Target<B>: Functor<Self::Param, Target<Self::Param> = Self>,
    {
        #[inline]
        fn internal<FA: FlatMap<<FA as Higher>::Param, Target<<FA as Higher>::Param> = FA>>(
            fa: FA,
            g: impl FnMut(FA::Param) -> FA,
        ) -> FA {
            fa.flat_map(g)
        }

        internal(self, |a| f(a).map(constant1!(a)))
    }
}

/// Macro to implement [FlatMap] for types with [Iterator] support.
#[macro_export]
macro_rules! flatmap_iter {
    ($name:ident) => {
        impl<A, B> $crate::flatmap::FlatMap<B> for $name<A>
        {
            #[inline]
            fn flat_map<F>(self, f: F) -> Self::Target<B>
            where
                F: FnMut(A) -> Self::Target<B>,
            {
                self.into_iter().flat_map(f).collect::<$name<B>>()
            }
        }
    };
    ($name:ident, $ct:tt $(+ $dt:tt )*) => {
        impl<A, B: $ct $(+ $dt )*> $crate::flatmap::FlatMap<B> for $name<A> {
            #[inline]
            fn flat_map<F>(self, f: F) -> Self::Target<B>
            where
                F: FnMut(A) -> Self::Target<B>,
            {
                self.into_iter().flat_map(f).collect::<$name<B>>()
            }
        }
    };
}

impl<A, B> FlatMap<B> for PhantomData<A> {
    #[inline]
    fn flat_map<F>(self, _f: F) -> PhantomData<B>
    where
        F: FnMut(A) -> PhantomData<B>,
    {
        PhantomData
    }
}

impl<A, B> FlatMap<B> for Option<A> {
    #[inline]
    fn flat_map<F>(self, f: F) -> Option<B>
    where
        F: FnMut(A) -> Option<B>,
    {
        self.and_then(f)
    }
}

impl<A, B, E> FlatMap<B> for Result<A, E> {
    #[inline]
    fn flat_map<F>(self, f: F) -> Result<B, E>
    where
        F: FnMut(A) -> Result<B, E>,
    {
        self.and_then(f)
    }
}

if_std! {
    use std::boxed::Box;
    use std::collections::*;
    use std::hash::Hash;
    use std::vec::Vec;

    impl<A, B> FlatMap<B> for Box<A> {
        #[inline]
        fn flat_map<F>(self, mut f: F) -> Box<B>
        where
            F: FnMut(A) -> Box<B>,
        {
            f(*self)
        }
    }

    flatmap_iter!(Vec);
    flatmap_iter!(LinkedList);
    flatmap_iter!(VecDeque);
    flatmap_iter!(BinaryHeap, Ord);
    flatmap_iter!(BTreeSet, Ord);
    flatmap_iter!(HashSet, Eq + Hash);

    impl<A, B, K: Eq + Hash> FlatMap<B> for HashMap<K, A> {
        #[inline]
        fn flat_map<F>(self, mut f: F) -> HashMap<K, B>
        where
            F: FnMut(A) -> HashMap<K, B>,
        {
            self.into_iter().flat_map(|(_, v)|  f(v)).collect()
        }
    }
}