Dumping grounds for personal, stylistic functions intended to improve readabily and writability (in that order).
8 lines
328 B
Haskell
8 lines
328 B
Haskell
--------------------------------------------------------------------------------
|
|
module Utils where
|
|
--------------------------------------------------------------------------------
|
|
import Data.Function ((&))
|
|
--------------------------------------------------------------------------------
|
|
|
|
(|>) :: a -> (a -> b) -> b
|
|
(|>) = (&)
|