packages feed

parsley-core-1.3.0.0: src/ghc/Parsley/Internal/Core.hs

{-|
Module      : Parsley.Internal.Core
Description : The main AST and datatypes are found here
License     : BSD-3-Clause
Maintainer  : Jamie Willis
Stability   : unstable

@since 0.1.0.0
-}
module Parsley.Internal.Core (
    Parser,
    ParserOps,
    module Parsley.Internal.Core.Defunc,
    module Parsley.Internal.Core.InputTypes
  ) where

import Parsley.Internal.Core.Defunc hiding (genDefunc, genDefunc1, genDefunc2, ap, unsafeBLACK, lamTerm, lamTermBool, adaptLam)
import Parsley.Internal.Core.InputTypes
import Parsley.Internal.Core.Primitives (Parser, ParserOps)