Prelude.ad

Outline

Content

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
module Prelude (
  module Prelude.Unit,
  module Prelude.Bool,
  module Prelude.Literal,
  module Prelude.Default,
  module Prelude.Function,
  module Prelude.Either,
  module Prelude.Maybe hiding (mapconstant `Prelude.Maybe.map`
   constant
   type `('a -> 'b) -> Prelude.Maybe.Maybe 'a -> Prelude.Maybe.Maybe 'b`
   executable, bindconstant `Prelude.Maybe.bind`
   constant
   type `Prelude.Maybe.Maybe 'a -> ('a -> Prelude.Maybe.Maybe 'b) -> Prelude.Maybe.Maybe 'b`
   executable),
  module Prelude.Eq,
  module Prelude.List hiding (foldrconstant `Prelude.List.foldr`
   constant
   type `('a -> 'b -> 'b) -> 'b -> ['a] -> 'b`
   executable, foldlconstant `Prelude.List.foldl`
   constant
   type `('a -> 'b -> 'a) -> 'a -> ['b] -> 'a`
   executable, partitionconstant `Prelude.List.partition`
   constant
   type `('a -> Prelude.Bool.Bool) -> ['a] -> (['a], ['a])`
   executable, elemconstant `Prelude.List.elem`
   constant
   type `Prelude.Eq.Eq 'a => 'a -> ['a] -> Prelude.Bool.Bool`
   executable, elemPconstant `Prelude.List.elemP`
   constant
   type `Prelude.Eq.EqP 'a => 'a -> ['a] -> Prelude.Bool.Prop`
   non-executable, notElemPconstant `Prelude.List.notElemP`
   constant
   type `Prelude.Eq.EqP 'a => 'a -> ['a] -> Prelude.Bool.Prop`
   non-executable, nullconstant `Prelude.List.null`
   constant
   type `['a] -> Prelude.Bool.Bool`
   executable, filterconstant `Prelude.List.filter`
   constant
   type `('a -> Prelude.Bool.Bool) -> ['a] -> ['a]`
   executable, allconstant `Prelude.List.all`
   constant
   type `('a -> Prelude.Bool.Bool) -> ['a] -> Prelude.Bool.Bool`
   executable, anyconstant `Prelude.List.any`
   constant
   type `('a -> Prelude.Bool.Bool) -> ['a] -> Prelude.Bool.Bool`
   executable, foldlWithAbortconstant `Prelude.List.foldlWithAbort`
   constant
   type `('a -> Prelude.Bool.Bool) -> ('a -> 'b -> 'a) -> 'a -> ['b] -> 'a`
   executable),
  module Prelude.Num,
  module Prelude.Ord,
  module Prelude.Tuple,
  module Prelude.Char,
  module Prelude.String,
  module Prelude.Text,
  module Prelude.BasicClasses,
  module Prelude.Foldable,
  module Prelude.Functor,
  module Prelude.Monad,
  module Prelude.Collection,
  module Prelude.Template
) where

{-# NoImplicitPrelude #-}

-- Just include instances, no need to explicitly export
import Prelude.ListCollection


end-moduleend of module Prelude