Skip to content

Commit b223f64

Browse files
committed
Added re-exports from Data.Foldable and Data.Traversable
1 parent 90b1c3d commit b223f64

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/Data/Array.purs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ module Data.Array
100100
, unzip
101101

102102
, foldM
103+
104+
, module Data.Foldable
105+
, module Data.Traversable
103106
) where
104107

105108
import Prelude
@@ -108,9 +111,9 @@ import Control.Alt ((<|>))
108111
import Control.Alternative (class Alternative)
109112
import Control.Lazy (class Lazy, defer)
110113

111-
import Data.Foldable (class Foldable, foldl, foldr)
114+
import Data.Foldable (class Foldable, foldl, foldr, fold, oneOf, intercalate, and, or, all, any, sum, product, elem, notElem, find, maximum, maximumBy, minimum, minimumBy)
112115
import Data.Maybe (Maybe(..), maybe, isJust, fromJust)
113-
import Data.Traversable (sequence)
116+
import Data.Traversable (sequence, scanl, scanr)
114117
import Data.Tuple (Tuple(..))
115118
import Data.Unfoldable (class Unfoldable, unfoldr)
116119

0 commit comments

Comments
 (0)