| Copyright | 2013 Hironao Komatsu |
|---|---|
| License | BSD |
| Maintainer | Hironao Komatsu <hirkmt@gmail.com> |
| Portability | portable |
| Safe Haskell | Safe-Inferred |
| Language | Haskell98 |
Text.NaturalComp.Stringy
Description
A type class that have methods uncons and toString, so that we
can handle them as String-like objects.
Documentation
class Stringy s where Source #
Instances
| Stringy ByteString Source # | |
Defined in Text.NaturalComp.Stringy Methods uncons :: ByteString -> Maybe (Char, ByteString) Source # toString :: ByteString -> String Source # | |
| Stringy ByteString Source # | |
Defined in Text.NaturalComp.Stringy Methods uncons :: ByteString -> Maybe (Char, ByteString) Source # toString :: ByteString -> String Source # | |
| Stringy Text Source # | |
| Stringy Text Source # | |
| Stringy [Char] Source # | |