Description
It'd be nice if we add sendMessageToNeighbors().
In PageRank, then below code can be reduced to 1 line of code.
for (Edge e : this.getOutEdges()) { this.sendMessage(e.getTarget(), new DoubleMessage(e.getName(), (Double) this.getValue() / numEdges)); }