The functions for getting neighboring links and nodes now have a consistent naming scheme:
The base function is neighborThings() with Thing is either Node or Link
The specialized functions that treat specific types of links are now named outgoingThings(), incomingThings(), outflowingThings(), inflowingThings(), directedThings(), and undirectedThings().
The function that counts the number of nodes/links is neighborThingCount(). The specialized versions are outgoingThingCount() etc. (as above).
The functions for getting neighboring links and nodes now have a consistent naming scheme:
neighborThings()
withThing
is eitherNode
orLink
outgoingThings()
,incomingThings()
,outflowingThings()
,inflowingThings()
,directedThings()
, andundirectedThings()
.neighborThingCount()
. The specialized versions areoutgoingThingCount()
etc. (as above).