Define Utils module

Dumping grounds for personal, stylistic functions intended to improve readabily
and writability (in that order).
This commit is contained in:
William Carroll 2020-08-08 11:06:53 +01:00
parent a7ddb56b9b
commit 9dcbd0d067

View file

@ -0,0 +1,8 @@
--------------------------------------------------------------------------------
module Utils where
--------------------------------------------------------------------------------
import Data.Function ((&))
--------------------------------------------------------------------------------
(|>) :: a -> (a -> b) -> b
(|>) = (&)