``` data class Node : Indexable<Node> privat...
# getting-started
a
Copy code
data class Node : Indexable<Node> private constructor(val index: Int, val coordinates: Vector, val boundary: Bool) {
    constructor(vec: Vector, idx: Int, boundary: Bool) : this (idx, vec.copy(), boundary) {
    }
}