1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
Name: pointedlist
Version: 0.6.1
Synopsis: A zipper-like comonad which works as a list, tracking a position.
Category: Data
Description:
A PointedList tracks the position in a non-empty list which works similarly
to a zipper. A current item is always required, and therefore the list may
never be empty.
A circular PointedList wraps around to the other end when progressing past
the actual edge.
License: BSD3
License-file: LICENSE
Author: Jeff Wheeler
Maintainer: jeffwheeler@gmail.com
Build-type: Simple
Cabal-version: >= 1.6
Source-repository head
type: git
location: git://github.com/jeffwheeler/pointedlist.git
Library
Build-depends: base >= 4 && < 5
Build-depends: binary
Exposed-modules: Data.List.PointedList
Data.List.PointedList.Circular
|