packages feed

effectful-zoo-0.0.3.0: components/core/Effectful/Zoo/Prim.hs

{-# OPTIONS_GHC -fno-warn-deprecations #-}

module Effectful.Zoo.Prim
  ( type (<:),
    type (<<:)
  ) where

import           Effectful ((:>), (:>>))

type (<:) r e = (:>) e r

type (<<:) r e = (:>>) e r