Esempio n. 1
0
 /**
  * Returns an iterator over this formula's children, in the increasing order of indices.
  *
  * @return an iterator over this formula's children, in the increasing order of indices.
  */
 public Iterator<Formula> iterator() {
   return Containers.iterate(children);
 }
Esempio n. 2
0
 /**
  * Returns an unmodifiable iterator over the decls in this Decls object.
  *
  * @return an unmodifiable iterator over the decls in this Decls object.
  */
 public Iterator<Decl> iterator() {
   return Containers.iterate(decls);
 }