packages feed

introduction-0.0.1.0: src/Functor.hs

{-# LANGUAGE NoImplicitPrelude #-}

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

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