cab-0.2.0: A maintenance command of Haskell cabal packages

Safe HaskellNone

Distribution.Cab

Contents

Synopsis

Types

Commands

Utilities

joinBy :: String -> [String] -> StringSource

>>> joinBy "," ["foo","bar","baz"]
"foo,bar,baz"

split :: Int -> [a] -> [[a]]Source

>>> split 4 "0123457689"
["0123","4576","89"]