Rename the StreamK and StreamD Type modules

This commit is contained in:
Harendra Kumar 2018-12-26 17:07:24 +05:30
parent c175cddef5
commit 57fad213a0
5 changed files with 7 additions and 7 deletions

View File

@ -201,7 +201,7 @@ import Prelude
import Streamly.SVar (MonadAsync, defState, adaptState)
import Streamly.Streams.StreamDType
import Streamly.Streams.StreamD.Type
import qualified Streamly.Streams.StreamK as K
------------------------------------------------------------------------------

View File

@ -9,7 +9,7 @@
{-# LANGUAGE ViewPatterns #-}
{-# LANGUAGE RankNTypes #-}
#include "inline.hs"
#include "../inline.hs"
-- |
-- Module : Streamly.Streams.StreamDType
@ -20,7 +20,7 @@
-- Stability : experimental
-- Portability : GHC
module Streamly.Streams.StreamDType
module Streamly.Streams.StreamD.Type
(
-- * The stream type
Step (..)

View File

@ -169,7 +169,7 @@ import Prelude
import qualified Prelude
import Streamly.SVar
import Streamly.Streams.StreamKType
import Streamly.Streams.StreamK.Type
-- | Detach a stream from an SVar
{-# INLINE unShare #-}

View File

@ -23,7 +23,7 @@
-- Continuation passing style (CPS) stream implementation. The symbol 'K' below
-- denotes a function as well as a Kontinuation.
--
module Streamly.Streams.StreamKType
module Streamly.Streams.StreamK.Type
(
-- * A class for streams
IsStream (..)

View File

@ -128,9 +128,9 @@ library
other-modules: Streamly.SVar
-- Base streams
, Streamly.Streams.StreamKType
, Streamly.Streams.StreamK.Type
, Streamly.Streams.StreamK
, Streamly.Streams.StreamDType
, Streamly.Streams.StreamD.Type
, Streamly.Streams.StreamD
, Streamly.Streams.Prelude