data-default-instances-bytestring: Default instances for (lazy and strict) ByteString, Builder and ShortByteString.

[ bsd3, data, library ] [ Propose Tags ]

Orphan instances for Default type class, which is defined in package data-default-class.

Following Default instances are provided:

-- Strict ByteString:
instance Default ByteString where
    def = empty

-- Lazy ByteString:
instance Default ByteString where
    def = empty

Following instance is provided only for bytestring >=0.10, since that it the version that introduced Builder:

instance Default Builder where
    def = mempty

Following instance is provided only for bytestring >=0.10.4, since that it the version that introduced ShortByteString:

instance Default ShortByteString where
    def = empty

[Skip to Readme]

Modules

[Index]

Downloads

Note: This package has metadata revisions in the cabal description newer than included in the tarball. To unpack the package including the revisions, use 'cabal get'.

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

  • No Candidates
Versions [RSS] 0.0.1
Change log ChangeLog.md
Dependencies base (<6), bytestring (>=0.9 && <1), data-default-class (>=0.0 && <0.2) [details]
License BSD-3-Clause
Copyright (c) 2016, Peter Trško
Author Peter Trško
Maintainer peter.trsko@gmail.com
Revised Revision 1 made by PeterTrsko at 2017-01-05T20:05:29Z
Category Data
Home page https://github.com/trskop/data-default-extra
Bug tracker https://github.com/trskop/data-default-extra/issues
Source repo head: git clone git://github.com/trskop/data-default-extra.git
this: git clone git://github.com/trskop/data-default-extra.git(tag bytestring-v0.0.1)
Uploaded by PeterTrsko at 2016-02-07T14:04:09Z
Distributions LTSHaskell:0.0.1, NixOS:0.0.1, Stackage:0.0.1
Reverse Dependencies 1 direct, 4 indirect [details]
Downloads 1394 total (13 in the last 30 days)
Rating (no votes yet) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2016-02-12 [all 1 reports]

Readme for data-default-instances-bytestring-0.0.1

[back to package description]

data-default-instances-bytestring

Hackage Hackage Dependencies Haskell Programming Language BSD3 License

Build

Description

Default instances for types defined in bytestring package:

instance Default Strict.ByteString where
    def = Strict.ByteString.empty

instance Default Lazy.ByteString where
    def = Lazy.ByteString.empty

-- For bytestring >=0.10.
instance Default Builder where
    def = mempty

-- For bytestring >=0.10.4.
instance Default ShortByteString where
    def = ShortByteString.empty

This package is intended to be used in conjunction with data-default package or directly with data-default-class package.

License

The BSD 3-Clause License, see LICENSE file for details.

Contributions

Contributions, pull requests and bug reports are welcome! Please don't be afraid to contact author using GitHub or by e-mail.