Difference between revisions of "Applications and libraries/Data structures"

From HaskellWiki
Jump to navigation Jump to search
(+rhaskell, a library for reactive objects)
(Add ByteStream, start to add sub categories for the data structures)
Line 12: Line 12:
 
;[http://homepages.nildram.co.uk/~ahey/HLibs/Data.StringMap/ Data.StringMap]
 
;[http://homepages.nildram.co.uk/~ahey/HLibs/Data.StringMap/ Data.StringMap]
 
:A library providing maps from String keys to values, based on Tries.
 
:A library providing maps from String keys to values, based on Tries.
 
;[http://quux.org/devel/missingh MissingH]
 
:MissingH is a library of pure-Haskell utility functions relating to strings, logging, and I/O.
 
 
;[http://www.cse.unsw.edu.au/~dons/fps.html Fast Packed Strings]
 
:The FPS library provides mmapped and malloc'd packed strings (byte arrays held by a ForeignPtr), along with a list interface to these strings. It lets you do extremely fast IO in Haskell; in some cases, even faster than typical C implementations, as well as conserving space.
 
   
 
;[http://web.engr.oregonstate.edu/~erwig/fgl/haskell/ FGL - A Functional Graph Library]
 
;[http://web.engr.oregonstate.edu/~erwig/fgl/haskell/ FGL - A Functional Graph Library]
Line 33: Line 27:
 
;[http://web.engr.oregonstate.edu/~erwig/diet/ Discrete Interval Encoding Trees]
 
;[http://web.engr.oregonstate.edu/~erwig/diet/ Discrete Interval Encoding Trees]
 
:The discrete interval encoding tree is a structure for storing subsets of types having a total order and a predecessor and a successor function.
 
:The discrete interval encoding tree is a structure for storing subsets of types having a total order and a predecessor and a successor function.
 
;[http://www.n-heptane.com/nhlab/repos/NewBinary New binary]
 
:A port of Malcolm Wallace's Binary library from NHC, offering facilities for heap compression and binary I/O. The de-facto standard for binary IO in Haskell
 
 
;[http://www.cs.helsinki.fi/u/ekarttun/SerTH/ SerTH]
 
:SerTH is a binary serialization library for Haskell. It supports serializing cyclic datatypes in a fast binary format. SerTH uses template haskell for deriving the serializing interface for new datatypes.
 
   
 
;[http://sourceforge.net/projects/ranged-sets/ Ranged Sets]
 
;[http://sourceforge.net/projects/ranged-sets/ Ranged Sets]
Line 60: Line 48:
 
;[http://www.informatik.uni-freiburg.de/~wehr/haskell/ rhaskell : Reactive Objects]
 
;[http://www.informatik.uni-freiburg.de/~wehr/haskell/ rhaskell : Reactive Objects]
 
:Stefan Wehr's reactive objects library. Reactive objects are a convenient abstraction for writing programs which have to interact with a concurrent environment. A reactive object has two characteristics: the abandonment of all blocking operations and the unification of the concepts state and process. The former allows a reactive object to accept input from multiple sources without imposing any ordering on the input events. The latter prevents race conditions because the state of an object is only manipulated from the process belonging to the object.
 
:Stefan Wehr's reactive objects library. Reactive objects are a convenient abstraction for writing programs which have to interact with a concurrent environment. A reactive object has two characteristics: the abandonment of all blocking operations and the unification of the concepts state and process. The former allows a reactive object to accept input from multiple sources without imposing any ordering on the input events. The latter prevents race conditions because the state of an object is only manipulated from the process belonging to the object.
  +
  +
=== Strings ===
  +
 
;[http://www.cse.unsw.edu.au/~dons/fps.html Fast Packed Strings]
 
:The FPS library provides mmapped and malloc'd packed strings (byte arrays held by a ForeignPtr), along with a list interface to these strings. It lets you do extremely fast IO in Haskell; in some cases, even faster than typical C implementations, as well as conserving space.
  +
 
;[http://quux.org/devel/missingh MissingH]
 
:MissingH is a library of pure-Haskell utility functions relating to strings, logging, and I/O.
  +
  +
=== Serialising Data ===
  +
 
;[http://www.n-heptane.com/nhlab/repos/NewBinary New binary]
 
:A port of Malcolm Wallace's Binary library from NHC, offering facilities for heap compression and binary I/O. The de-facto standard for binary IO in Haskell
  +
 
;[http://www.cs.helsinki.fi/u/ekarttun/SerTH/ SerTH]
 
:SerTH is a binary serialization library for Haskell. It supports serializing cyclic datatypes in a fast binary format. SerTH uses template haskell for deriving the serializing interface for new datatypes.
  +
  +
;[http://freearc.narod.ru ByteStream]
  +
:ByteStream is like the NHC Binary library. It provides marshalling of Haskell objects to byte streams and restoring them back.

Revision as of 04:52, 31 March 2006

The copyright status of this work is not known. Please help resolve this on the talk page.

This page contains a list of libraries and tools in a certain category. For a comprehensive list of such pages, see Applications and libraries.

Haskell Libraries and Tools for Data Structures

Edison
This is the latest version of the Edison library of efficient data structures. There are also earlier version of Edison by Chris Okasaki. It provides sequences, finite maps, priority queues, and sets/bags. (overview paper).
Data.Tree.AVL
An implementation of AVL trees and related utilities.
Data.StringMap
A library providing maps from String keys to values, based on Tries.
FGL - A Functional Graph Library
The functional graph library provides a collection of graph operations.
Strafunski
A bundle for generic programming. It provides programming support for generic traversal as useful in the implementation of program transformations.
The Haskell STate Preprocessor
This is a short preprocessor for stateful Haskell programs. It aleviates the pain of performing single array lookup/write/update functions with some syntax to support it. It also supports hash table operations based on the HashTable implementation available from the author. Finally, it supports monadic if and monadic case constructions. It is lightweight in the sense that it performs no syntactic analysis and is essentially a character transformer.
Partial v0.1
The Partial library provides a partial order class. It also provides routines for generating a Hasse diagram from a set and a partial order. Renderers are provided for the abstract Hasse diagram representation into LaTeX (via Xy-pic) and into dot, the format for AT&T's Graphviz tools. Since no horizontal sorting is done, the Xy-pic output is rather poor at present; dot does a much better job with its layout optimisation algorithm.
Discrete Interval Encoding Trees
The discrete interval encoding tree is a structure for storing subsets of types having a total order and a predecessor and a successor function.
Ranged Sets
A ranged set is a list of non-overlapping ranges. The ranges have upper and lower boundaries, and a boundary divides the base type into values above and below. No value can ever sit on a boundary. So you can have the set {2.0 < x <= 3.0, 5.3 < x < 6}
HList
A heterogeneous collection is a datatype that is capable of storing data of different types, while providing operations for look-up, update, iteration, and others. There are various kinds of heterogeneous collections, differing in representation, invariants, and access operations.
Fast mutable variables for IO and ST
Bulat Ziganshin's preliminary code for fast mutable variables in IO and ST.
monadLib
Iavor Diatchki's library of monad transformers for Haskell. It enables the quick construction of monads --- abstract data types that capture common programming idioms, such as throwing and catching exceptions or continuations. In many programming languages such features are built into the language (if they're provided at all), but in Haskell they are user-programmable.
Data.Relation
Part of the UMinho Haskell libraries, this library provides a representation and operations on relations. A special case of relations are graphs. The operations include graph chopping and slicing, strong connected component analysis, graphs metrics, and more.
Pointless Haskell
Pointless Haskell is library for point-free programming with recursion patterns defined as hylomorphisms. It also allows the visualization of the intermediate data structure of the hylomorphisms with GHood. This feature together with the DrHylo tool allows us to easily visualize recursion trees of Haskell functions.
rhaskell : Reactive Objects
Stefan Wehr's reactive objects library. Reactive objects are a convenient abstraction for writing programs which have to interact with a concurrent environment. A reactive object has two characteristics: the abandonment of all blocking operations and the unification of the concepts state and process. The former allows a reactive object to accept input from multiple sources without imposing any ordering on the input events. The latter prevents race conditions because the state of an object is only manipulated from the process belonging to the object.

Strings

Fast Packed Strings
The FPS library provides mmapped and malloc'd packed strings (byte arrays held by a ForeignPtr), along with a list interface to these strings. It lets you do extremely fast IO in Haskell; in some cases, even faster than typical C implementations, as well as conserving space.
MissingH
MissingH is a library of pure-Haskell utility functions relating to strings, logging, and I/O.

Serialising Data

New binary
A port of Malcolm Wallace's Binary library from NHC, offering facilities for heap compression and binary I/O. The de-facto standard for binary IO in Haskell
SerTH
SerTH is a binary serialization library for Haskell. It supports serializing cyclic datatypes in a fast binary format. SerTH uses template haskell for deriving the serializing interface for new datatypes.
ByteStream
ByteStream is like the NHC Binary library. It provides marshalling of Haskell objects to byte streams and restoring them back.