{-# LANGUAGE NoImplicitPrelude #-}
module Imported where

(|*|) :: a -> a -> a
(|*|) = (|*|)
infixr 6 |*|

(|$|) :: (a -> b) -> a -> b
f |$| x = f x
infixr 1 |$|
