- addEdge
void addEdge(size_t tail, size_t head)
Undocumented in source. Be warned that the author may not have intended to support it.
- addEdge
void addEdge(T[] edgeList)
Undocumented in source. Be warned that the author may not have intended to support it.
- degree
size_t degree(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- degreeIn
size_t degreeIn(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- degreeOut
size_t degreeOut(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- edge
auto edge()
Undocumented in source. Be warned that the author may not have intended to support it.
- edgeCount
size_t edgeCount()
Undocumented in source. Be warned that the author may not have intended to support it.
- edgeID
size_t edgeID(size_t tail, size_t head)
Undocumented in source. Be warned that the author may not have intended to support it.
- incidentEdges
auto incidentEdges(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- incidentEdgesIn
auto incidentEdgesIn(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- incidentEdgesOut
auto incidentEdgesOut(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- isEdge
bool isEdge(size_t tail, size_t head)
Undocumented in source. Be warned that the author may not have intended to support it.
- isVertex
bool isVertex(T v)
Undocumented in source. Be warned that the author may not have intended to support it.
- neighbours
auto neighbours(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- neighboursIn
auto neighboursIn(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- neighboursOut
auto neighboursOut(size_t v)
Undocumented in source. Be warned that the author may not have intended to support it.
- vertexCount
size_t vertexCount()
Undocumented in source. Be warned that the author may not have intended to support it.
- vertexCount
size_t vertexCount(size_t n)
Undocumented in source. Be warned that the author may not have intended to support it.
An extension of IndexedEdgeList that caches the results of calculations of various graph properties so as to provide speedier performance. Provides the same set of public methods. This is the recommended data type to use with Dgraph.