string-conv: Standardized conversion between string types

[ bsd3, data, library, string, text ] [ Propose Tags ]

Avoids the need to remember many different functions for converting string types. Just use one universal function toS for all monomorphic string conversions.


[Skip to Readme]

Modules

[Index]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.1, 0.1.1, 0.1.2, 0.2.0
Change log changelog.md
Dependencies base (>=4.4 && <5), bytestring, text [details]
License BSD-3-Clause
Copyright Soostone Inc, 2012-2015
Author Ozgun Ataman
Maintainer ozgun.ataman@soostone.com
Category Data, String, Text
Home page https://github.com/Soostone/string-conv
Bug tracker https://github.com/Soostone/string-conv/issues
Source repo head: git clone https://github.com/Soostone/string-conv.git
Uploaded by MichaelXavier at 2016-05-03T15:15:19Z
Distributions LTSHaskell:0.2.0, NixOS:0.2.0, Stackage:0.2.0
Reverse Dependencies 27 direct, 202 indirect [details]
Downloads 19934 total (151 in the last 30 days)
Rating 1.75 (votes: 2) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs uploaded by user
Build status unknown [no reports yet]

Readme for string-conv-0.1.1

[back to package description]

string-conv

A type class to standardize string conversions. With this type class you only need to remember one function for converting between any two string variants. This package includes support for String, ByteString, and Text as well as the Lazy and Strict variants where necessary.

StringConv's toS function is most useful when you have a fully defined string conversion with a fixed (non-polymorphic) input and output type. Of course you can still use it when you don't have a fixed type. In that case you might need to specify a type class constraint such as StringConv s String.