Skip to content

crisson/js-datastructures

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

A few useful collections and abstractions in JavaScript.

Circular, Doubly-Linked List

var list = new Collections.CircularLinkedList(['foo', 'bar', 'baz', 'boo']);
list.nextElement() // foo
list.nextElement() // bar
list.previousElement() // foo

Tests

See spec/SpecRunner.html for tests

About

A few useful collections and abstractions.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published