removeNode method

Graph removeNode(
  1. GraphNode node
)

Implementation

Graph removeNode(GraphNode node) {
  nodes.remove(node);
  return this;
}