Remove the node with the specified local ID.

Property definitions

neo4j $ NeoNodeCollection :: remove_at
	# Remove the node with the specified local ID.
	fun remove_at(id: ID_TYPE) is abstract
lib/neo4j/graph/graph.nit:122,2--123,39

neo4j $ SequentialNodeCollection :: remove_at
	redef fun remove_at(id) do
		nodes[id] = null
		length -= 1
	end
lib/neo4j/graph/sequential_id.nit:97,2--100,4