Copyright | (c) OleksandrZhabenko 2023 |
---|---|
License | MIT |
Maintainer | oleksandr.zhabenko@yahoo.com |
Stability | Experimental |
Safe Haskell | Safe-Inferred |
Language | Haskell2010 |
Synopsis
- halfsplit :: (Show a, Eq b) => (a -> b) -> Bool -> Int8 -> [a] -> String
- halfsplit1G :: (Show a, Eq b) => (a -> b) -> Bool -> String -> Int8 -> [a] -> String
- halfsplit2G :: (Show a, Eq b) => (a -> b) -> Bool -> String -> String -> String -> Int8 -> [a] -> String
- removeChangesOfDurations :: String -> String
- mergePartsLine :: Int -> String -> [String] -> [String] -> String
- splitGroups :: Int -> [[a]] -> ([[a]], [[a]], Int)
- showWithSpaces :: Show a => Int -> a -> String
- print23 :: Bool -> String -> String -> Int -> [String] -> IO ()
Documentation
:: (Show a, Eq b) | |
=> (a -> b) | |
-> Bool | Whether to filter out all groups of '={digits}' from the lines. |
-> Int8 | |
-> [a] | |
-> String |
Converts the data that is an instance of Show
typeclass to be printed in two-column way.
:: (Show a, Eq b) | |
=> (a -> b) | |
-> Bool | Whether to filter out all groups of '={digits}' from the lines. |
-> String | Additional |
-> Int8 | |
-> [a] | |
-> String |
Converts the data that is an instance of Show
typeclass to be printed in two-column way with
customizable ending of each line. Filters out all groups of '={digits}' from the lines.
:: (Show a, Eq b) | |
=> (a -> b) | |
-> Bool | Whether to filter out all groups of '={digits}' from the lines. |
-> String | Additional |
-> String | A |
-> String | A |
-> Int8 | |
-> [a] | |
-> String |
removeChangesOfDurations :: String -> String Source #
Filters out all groups of '={digits}' from the String
splitGroups :: Int -> [[a]] -> ([[a]], [[a]], Int) Source #