I tried googling for this but all I got were stories about minor celebrities. Given the lack of documentation, what is a DList?
feedback
|
|
It's a Different List, along the lines of "Difference List as functions"
Efficient prepending:
Inefficient appending. This creates an intermediate list (l1 ++ l2), then ((l1 ++ l2) ++ l3)
| |||||||
feedback
|
|
Difference lists are a list-like data structure that supports O(1) append operations. Append, and other operations that modify a list are represented via function composition of the modification functions, rather than directly copying the list. An example, from Haskell's dlist library:
The technique goes back at least to Hughes 84, A novel representation of lists and its application to the function "reverse", R. John Hughes, 1984., where, he proposes representing lists as functions, and append as function composition, allowing e.g. reverse to run in linear time. From the paper:
| |||
|
feedback
|
|
It's a data type in the non-canonical scalaz package, useful for typed lists with constant-time access at both ends. (The trick is to google for "scala" AND "dlist".) | |||||
feedback
|
|
From the project page of scalaz:
| |||
|
feedback
|

