I find myself combining different `Freya<bool>` computation quite frequently and I have made the following custom operators for myself: ``` f# let (<&>) = Freya.map2 (&&) let (<||>) = Freya.map2 (||) ``` Might be useful to include as part of the standard operators?
I find myself combining different
Freya<bool>computation quite frequently and I have made the following custom operators for myself:Might be useful to include as part of the standard operators?