public void Iterate(BTreeIterateAction action) { if (_rootNode == null) { return; } _rootNode.Iterate(action); }