operator [] method

Node<num> operator [](
  1. int index
)

Implementation

Node<num> operator [](int index) {
  return _nodes[index];
}