@rimbu/graph
Version:
Immutable Graph data structures for TypeScript
7 lines • 328 B
JavaScript
import { ValuedGraphContext, } from '@rimbu/graph/custom';
export const EdgeValuedGraph = Object.freeze({
createContext(options) {
return Object.freeze(new ValuedGraphContext(true, 'ArrowValuedGraph', options.linkMapContext, options.linkConnectionsContext));
},
});
//# sourceMappingURL=edge-valued-graph.mjs.map