descendants method

List<T> descendants()

返回其所有后代节点

Implementation

List<T> descendants() {
  return iterator();
}