CachedEdgeList

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.

final
class CachedEdgeList (
bool dir
) {
const(size_t)[][] incidentEdgesIn_;
const(size_t)[][] incidentEdgesOut_;
const(size_t)[][] neighboursIn_;
const(size_t)[][] neighboursOut_;
const(size_t)[][] incidentEdges_;
const(size_t)[][] neighbours_;
}

Alias This

graph_

Meta