hasEdgeBy<T> abstract method

bool hasEdgeBy<T>(
  1. dynamic a,
  2. dynamic b, {
  3. List anyTags,
  4. List allTags,
})

Determine if there is a value link between 2 nodes but by Generic

Equivalent to hasEdge(a, b, T)

(Optional) Only if it matches any of anyTags and matches all items in allTags

Implementation

bool hasEdgeBy<T>(a, b, {List anyTags, List allTags});