summaryrefslogtreecommitdiffstats
path: root/src/Much/Utils.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Much/Utils.hs')
-rw-r--r--src/Much/Utils.hs5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/Much/Utils.hs b/src/Much/Utils.hs
index 80615fc..df23c82 100644
--- a/src/Much/Utils.hs
+++ b/src/Much/Utils.hs
@@ -10,11 +10,6 @@ withTempFile tmpdir template =
bracket (openTempFile tmpdir template) (removeFile . fst)
-mintercalate :: Monoid b => b -> [b] -> b
-mintercalate c (h:t) = foldl (\acc x -> acc <> c <> x) h t
-mintercalate _ [] = mempty
-
-
padl :: Int -> a -> [a] -> [a]
padl n c s =
if length s < n