name: string-like version: 0.1.0.1 synopsis: A package that aims to provide a uniform interface to string-like types. description: The package defines a typeclass that can be implemented to provide a uniform interface for @String@-like objects. . The typeclass itself has default implementations that convert the @StringLike@ item first to a lazy @Text@, then performs the operation, and converts results back to its @StringLike@ object. This is usually /not/ as efficient as an operation for that specific type. Therefore it is advisable to implement the other functions as well. One can however decide to only implement @fromText@ and @toText@; or @toString@. homepage: https://github.com/hapytex/string-like#readme license: BSD3 license-file: LICENSE author: Willem Van Onsem maintainer: hapytexeu+gh@gmail.com copyright: 2020 Willem Van Onsem category: utils build-type: Simple extra-source-files: README.md , CHANGELOG.md cabal-version: >=1.10 library hs-source-dirs: src exposed-modules: Data.String.Like build-depends: base >= 4.7 && < 5 , bytestring >=0.10 , text >= 1.2.3.0 default-language: Haskell2010 source-repository head type: git location: https://github.com/hapytex/string-like