symbol-tree
Last updated
Was this helpful?
Last updated
Was this helpful?
Turn any collection of objects into its own efficient tree or linked list using Symbol
.
This library has been designed to provide an efficient backing data structure for DOM trees. You can also use this library as an efficient linked list. Any meta data is stored on your objects directly, which ensures any kind of insertion or deletion is performed in constant time. Because an ES6 Symbol
is used, the meta data does not interfere with your object in any way.
Node.js 4+, io.js and modern browsers are supported.
A linked list:
A tree:
Make sure you install the dependencies first:
You can now run the unit tests by executing:
The line and branch coverage should be 100%.
Kind: Exported class
[description]
string
"'SymbolTree data'"
Description used for the Symbol
Object
You can use this function to (optionally) initialize an object right after its creation, to take advantage of V8's fast properties. Also useful if you would like to freeze your object.
O(1)
object
Object
Boolean
Returns true
if the object has any children. Otherwise it returns false
.
O(1)
object
Object
Object
Returns the first child of the given object.
O(1)
object
Object
Object
Returns the last child of the given object.
O(1)
object
Object
Object
Returns the previous sibling of the given object.
O(1)
object
Object
Object
Returns the next sibling of the given object.
O(1)
object
Object
Object
Return the parent of the given object.
O(1)
object
Object
Object
Find the inclusive descendant that is last in tree order of the given object.
O(n)
(worst case) where n
is the depth of the subtree of object
object
Object
Object
Find the preceding object (A) of the given object (B). An object A is preceding an object B if A and B are in the same tree and A comes before B in tree order.
O(n)
(worst case)
O(1)
(amortized when walking the entire tree)
object
Object
[options]
Object
[options.root]
Object
If set, root
must be an inclusive ancestor of the return value (or else null is returned). This check assumes that root
is also an inclusive ancestor of the given object
Object
Find the following object (A) of the given object (B). An object A is following an object B if A and B are in the same tree and A comes after B in tree order.
O(n)
(worst case) where n
is the amount of objects in the entire tree
O(1)
(amortized when walking the entire tree)
object
Object
[options]
Object
[options.root]
Object
If set, root
must be an inclusive ancestor of the return value (or else null is returned). This check assumes that root
is also an inclusive ancestor of the given object
[options.skipChildren]
Boolean
false
If set, ignore the children of object
Array.<Object>
Append all children of the given object to an array.
O(n)
where n
is the amount of children of the given parent
parent
Object
[options]
Object
[options.array]
Array.<Object>
[]
[options.filter]
function
Function to test each object before it is added to the array. Invoked with arguments (object). Should return true
if an object is to be included.
[options.thisArg]
*
Value to use as this
when executing filter
.
Array.<Object>
Append all inclusive ancestors of the given object to an array.
O(n)
where n
is the amount of ancestors of the given object
object
Object
[options]
Object
[options.array]
Array.<Object>
[]
[options.filter]
function
Function to test each object before it is added to the array. Invoked with arguments (object). Should return true
if an object is to be included.
[options.thisArg]
*
Value to use as this
when executing filter
.
Array.<Object>
Append all descendants of the given object to an array (in tree order).
O(n)
where n
is the amount of objects in the sub-tree of the given object
root
Object
[options]
Object
[options.array]
Array.<Object>
[]
[options.filter]
function
Function to test each object before it is added to the array. Invoked with arguments (object). Should return true
if an object is to be included.
[options.thisArg]
*
Value to use as this
when executing filter
.
Object
Iterate over all children of the given object
O(1)
for a single iteration
parent
Object
[options]
Object
[options.reverse]
Boolean
false
Object
Iterate over all the previous siblings of the given object. (in reverse tree order)
O(1)
for a single iteration
object
Object
Object
Iterate over all the next siblings of the given object. (in tree order)
O(1)
for a single iteration
object
Object
Object
Iterate over all inclusive ancestors of the given object
O(1)
for a single iteration
object
Object
Object
Iterate over all descendants of the given object (in tree order).
Where n
is the amount of objects in the sub-tree of the given root
:
O(n)
(worst case for a single iteration)
O(n)
(amortized, when completing the iterator)
root
Object
options
Object
[options.reverse]
Boolean
false
Number
Find the index of the given object (the number of preceding siblings).
O(n)
where n
is the amount of preceding siblings
O(1)
(amortized, if the tree is not modified)
child
Object
Number
Calculate the number of children.
O(n)
where n
is the amount of children
O(1)
(amortized, if the tree is not modified)
parent
Object
Number
Compare the position of an object relative to another object. A bit set is returned:
DISCONNECTED : 1
PRECEDING : 2
FOLLOWING : 4
CONTAINS : 8
CONTAINED_BY : 16
The semantics are the same as compareDocumentPosition in DOM, with the exception that DISCONNECTED never occurs with any other bit.
where n
and m
are the amount of ancestors of left
and right
; where o
is the amount of children of the lowest common ancestor of left
and right
:
O(n + m + o)
(worst case)
O(n + m)
(amortized, if the tree is not modified)
left
Object
right
Object
Object
Remove the object from this tree. Has no effect if already removed.
O(1)
removeObject
Object
Object
Insert the given object before the reference object. newObject
is now the previous sibling of referenceObject
.
O(1)
Error
If the newObject is already present in this SymbolTree
referenceObject
Object
newObject
Object
Object
Insert the given object after the reference object. newObject
is now the next sibling of referenceObject
.
O(1)
Error
If the newObject is already present in this SymbolTree
referenceObject
Object
newObject
Object
Object
Insert the given object as the first child of the given reference object. newObject
is now the first child of referenceObject
.
O(1)
Error
If the newObject is already present in this SymbolTree
referenceObject
Object
newObject
Object
Object
Insert the given object as the last child of the given reference object. newObject
is now the last child of referenceObject
.
O(1)
Error
If the newObject is already present in this SymbolTree
referenceObject
Object
newObject
Object
See for more documentation.
Author: Joris van der Wel
⏏
⇒ Object
⇒ Boolean
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Array.<Object>
⇒ Array.<Object>
⇒ Array.<Object>
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Number
⇒ Number
⇒ Number
⇒ Object
⇒ Object
⇒ Object
⇒ Object
⇒ Object
Kind: instance method of
Returns: Object
- object
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Kind: instance method of
Returns: Object
- An iterable iterator (ES6)
Kind: instance method of
Returns: Object
- An iterable iterator (ES6)
Kind: instance method of
Returns: Object
- An iterable iterator (ES6)
Kind: instance method of
Returns: Object
- An iterable iterator (ES6)
Kind: instance method of
Returns: Object
- An iterable iterator (ES6)
Kind: instance method of
Returns: Number
- The number of preceding siblings, or -1 if the object has no parent
Kind: instance method of
Kind: instance method of
Kind: instance method of
Returns: Object
- removeObject
Kind: instance method of
Returns: Object
- newObject
Throws:
Kind: instance method of
Returns: Object
- newObject
Throws:
Kind: instance method of
Returns: Object
- newObject
Throws:
Kind: instance method of
Returns: Object
- newObject
Throws: