diff options
author | Araq <rumpf_a@web.de> | 2011-08-10 00:43:58 +0200 |
---|---|---|
committer | Araq <rumpf_a@web.de> | 2011-08-10 00:43:58 +0200 |
commit | 72e7a98543e711164574664b0f280637fce28f89 (patch) | |
tree | 7dde5ef617a4f356b157fed9a5686022940f05be /lib/pure/collections | |
parent | 7000cf51b7c53808624dd7202c4213b84aacf708 (diff) | |
download | Nim-72e7a98543e711164574664b0f280637fce28f89.tar.gz |
added system.slurp for easy embedding of resources
Diffstat (limited to 'lib/pure/collections')
-rwxr-xr-x | lib/pure/collections/lists.nim | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/lib/pure/collections/lists.nim b/lib/pure/collections/lists.nim index 55c3d6ad9..3e54dc02b 100755 --- a/lib/pure/collections/lists.nim +++ b/lib/pure/collections/lists.nim @@ -35,7 +35,23 @@ type TDoublyLinkedRing* {.pure, final.}[T] = object ## a doubly linked ring head*: PDoublyLinkedNode[T] - + +proc initSinglyLinkedList*[T](): TSinglyLinkedList[T] = + ## creates a new singly linked list that is empty. + nil + +proc initDoublyLinkedList*[T](): TDoublyLinkedList[T] = + ## creates a new doubly linked list that is empty. + nil + +proc initSinglyLinkedRing*[T](): TSinglyLinkedRing[T] = + ## creates a new singly linked ring that is empty. + nil + +proc initDoublyLinkedRing*[T](): TDoublyLinkedRing[T] = + ## creates a new doubly linked ring that is empty. + nil + proc newDoublyLinkedNode*[T](value: T): PDoublyLinkedNode[T] = ## creates a new doubly linked node with the given `value`. new(result) |