packages feed

fresnel-0.0.0.0: src/Fresnel/Functor/Backwards.hs

{-# LANGUAGE GeneralizedNewtypeDeriving #-}
module Fresnel.Functor.Backwards
( Backwards(..)
) where

newtype Backwards f a = Backwards { forwards :: f a }
  deriving (Applicative, Functor)