Skip to content
Snippets Groups Projects
Commit 6533ac89 authored by Jens Nolte's avatar Jens Nolte
Browse files

Move intercalate for Monoid to Prelude

parent a77d5cad
No related branches found
No related tags found
No related merge requests found
......@@ -13,6 +13,7 @@ module Prelude
traceShow,
traceShowId,
Maybe.listToMaybe,
intercalate
)
where
......@@ -60,3 +61,9 @@ traceShow = Trace.traceShow
{-# DEPRECATED traceShowId "Partitial Function." #-}
traceShowId :: Show a => a -> a
traceShowId = Trace.traceShowId
intercalate :: Monoid a => a -> [a] -> a
intercalate _ [] = mempty
intercalate _ [x] = x
intercalate inter (x:xs) = x <> inter <> intercalate inter xs
......@@ -25,11 +25,6 @@ instance Semigroup BlockText where
instance Monoid BlockText where
mempty = BlockText []
intercalate :: Monoid a => a -> [a] -> a
intercalate _ [] = mempty
intercalate _ [x] = x
intercalate inter (x:xs) = x <> inter <> intercalate inter xs
data BlockTextSegment = BlockTextSegment {
active :: Bool,
importance :: Importance,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment