NOTICE: This package has been removed from pkgsrc

./wip/hs-dlist, Differences lists

[ CVSweb ] [ Homepage ] [ RSS ] [ Required by ]


Branch: CURRENT, Version: 0.7.0.1, Package name: hs-dlist-0.7.0.1, Maintainer: pho

Difference lists are a list-like type supporting O(1) append. This is
particularly useful for efficient logging and pretty printing (e.g. with
the Writer monad), where list append quickly becomes too expensive.


Required to run:
[lang/ghc7]

Master sites:

SHA1: ab501394befd3f2a3e9e8b035132ad4c22a20ee0
RMD160: 21171408668248a22b2efc0b38dc7a56db734569
Filesize: 5.596 KB

Version history: (Expand)


CVS history: (Expand)


   2014-05-18 23:33:25 by Ryosuke Moro | Files touched by this commit (119) | Package removed
Log message:
Remove hs-data-default-class, hs-dlist, hs-text, hs-utf8-string,
imported to pkgsrc/devel.
   2014-05-17 22:28:32 by Ryosuke Moro | Files touched by this commit (4)
Log message:
Update to 0.7.0.1
pkgsrc changes: static -> dynamic
ChangeLog:
0.7.0.1
- bump upper bound for `QuickCheck`
Version 0.7 (2014-03-17) *St. Patrick's Day*
--------------------------------------------

#### Package changes

* Add `NFData` instance (and `deepseq` dependency)
* Add `IsString` instance
* Remove deprecated entities
   2014-04-15 12:59:40 by Ryosuke Moro | Files touched by this commit (53)
Log message:
- ready for HASKELL_ENABLE_HADDOCK_DOCUMENTATION= yes
   2014-02-14 13:59:20 by Ryosuke Moro | Files touched by this commit (2)
Log message:
Update to 0.6.0.1

ChangeLog:
Version 0.6.0.1 (2013-12-01) *World AIDS Day*
#### Package changes
* Change QuickCheck lower bound from 2.6 to 2.5

#### Contributors
* [Michael Snoyman](https://github.com/snoyberg)
   2013-11-29 15:05:15 by Ryosuke Moro | Files touched by this commit (4)
Log message:
Update to 0.6

Change Log
==========

Version 0.6 (2013-11-29) *Black Friday*
---------------------------------------

#### Development changes

* Maintenance and development taken over by Sean Leather
* Migrate repository from http://code.haskell.org/~dons/code/dlist/ to
  https://github.com/spl/dlist

#### Package changes

* Stop supporting `base < 2`
* Fix tests and use `cabal test`
* Add scripts for running `hpc`
* Update documentation

#### New features

* New type class instances: `Eq`, `Ord`, `Read`, `Show`, `Alternative`,
  and `Foldable`
* New function `apply` to use instead of `unDL`

#### Deprecations

* Deprecate DList constructor and record selector to make it abstract
  (see [#4](https://github.com/spl/dlist/issues/4))
* Deprecate `maybeReturn` which is not directly relevant to dlists
   2011-07-08 11:23:29 by PHO / phonohawk | Files touched by this commit (5) | Imported package
Log message:
Import hs-dlist-0.5 as wip/hs-dlist.

Differences lists: a list-like type supporting O(1) append. This is
particularly useful for efficient logging and pretty printing,
(e.g. with the Writer monad), where list append quickly becomes too
expensive.