| toString :: s -> String |
| Converts the structure to a String
|
|
| fromString :: String -> s |
| Converts a String to a list
|
|
| lines :: ListLike full s => s -> full |
| Breaks a string into a list of strings
|
|
| words :: ListLike full s => s -> full |
| Breaks a string into a list of words
|
|
| unlines :: ListLike full s => full -> s |
| Joins lines
|
|
| unwords :: ListLike full s => full -> s |
| Joins words
|