# Packages
Package skiplist implements an n-dimensional rangetree based on a skip
list.
# Functions
New is the constructor to create a new rangetree with the provided number of dimensions.
NewEntries will return a reused list of entries.
# Structs
NoEntriesError is returned from an operation that requires existing entries when none are found.
OutOfDimensionError is returned when a requested operation doesn't meet dimensional requirements.
# Type aliases
Entries is a typed list of Entry that can be reused if Dispose is called.