* Get an iterator over all out-linking neighbor nodes for the given Node.
* @param n a Node in the graph
* @return an iterator over all Nodes pointed to by the input source node
*/
public Iterator outNeighbors(Node n) {
return new NeighborIterator(n, outEdges(n));
}