Variable BTree.Node._isLeaf

A flag indicating whether the node is a leaf node or not.

class BTree.Node
{
  // ...
  bool _isLeaf = true;
  // ...
}