Move Streams/Zip.hs to Internal/Data/Stream

This commit is contained in:
adithyaov 2019-12-09 15:54:09 +05:30
parent f1bef8669c
commit 7af59908cb
4 changed files with 5 additions and 5 deletions

View File

@ -230,7 +230,7 @@ import Streamly.Internal.Data.Stream.Combinators
import Streamly.Streams.Parallel
import Streamly.Streams.Serial
import Streamly.Internal.Data.Stream.StreamK hiding (serial)
import Streamly.Streams.Zip
import Streamly.Internal.Data.Stream.Zip
import qualified Streamly.Prelude as P
import qualified Streamly.Internal.Prelude as IP

View File

@ -85,7 +85,7 @@ import Data.Semigroup (Semigroup(..))
import GHC.Exts (IsList(..), IsString(..))
import Streamly.Streams.Serial (SerialT)
import Streamly.Streams.Zip (ZipSerialM)
import Streamly.Internal.Data.Stream.Zip (ZipSerialM)
import qualified Streamly.Streams.Prelude as P
import qualified Streamly.Internal.Data.Stream.StreamK as K

View File

@ -9,7 +9,7 @@
{-# LANGUAGE UndecidableInstances #-} -- XXX
-- |
-- Module : Streamly.Streams.Zip
-- Module : Streamly.Internal.Data.Stream.Zip
-- Copyright : (c) 2017 Harendra Kumar
--
-- License : BSD3
@ -18,7 +18,7 @@
-- Portability : GHC
--
--
module Streamly.Streams.Zip
module Streamly.Internal.Data.Stream.Zip
(
ZipSerialM
, ZipSerial

View File

@ -292,7 +292,7 @@ library
, Streamly.Internal.Data.Stream.Async
, Streamly.Streams.Parallel
, Streamly.Internal.Data.Stream.Ahead
, Streamly.Streams.Zip
, Streamly.Internal.Data.Stream.Zip
, Streamly.Internal.Data.Stream.Combinators
, Streamly.FileSystem.IOVec