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