{-# LANGUAGE NoImplicitPrelude #-}

module Functor
  ( Functor(..)
  , ($>)
  , (<$>)
  , void
  ) where

import           Data.Functor (Functor (..), void, ($>), (<$>))