UNPKG

@rimbu/graph

Version:

Immutable Graph data structures for TypeScript

90 lines (82 loc) 3.56 kB
import type { RMap } from '@rimbu/collection-types'; import type { Stream, Streamable } from '@rimbu/stream'; import type { ArrowValuedGraphCreators, ValuedGraphElement, } from '@rimbu/graph/custom'; import { type ArrowValuedGraphBase, ValuedGraphContext, } from '@rimbu/graph/custom'; /** * A type-invariant immutable valued arrow (directed) graph. * See the [Graph documentation](https://rimbu.org/docs/collections/graph) and the [ArrowValuedGraph API documentation](https://rimbu.org/api/rimbu/graph/ArrowValuedGraph/interface) * @typeparam N - the node type * @typeparam V - the connection value type */ export interface ArrowValuedGraph<N, V> extends ArrowValuedGraphBase<N, V, ArrowValuedGraph.Types> {} export namespace ArrowValuedGraph { /** * A non-empty type-invariant immutable valued arrow (directed) graph. * See the [Graph documentation](https://rimbu.org/docs/collections/graph) and the [ArrowValuedGraph API documentation](https://rimbu.org/api/rimbu/graph/ArrowValuedGraph/interface) * @typeparam N - the node type * @typeparam V - the connection value type */ export interface NonEmpty<N, V> extends ArrowValuedGraphBase.NonEmpty<N, V, ArrowValuedGraph.Types>, Omit< ArrowValuedGraph<N, V>, keyof ArrowValuedGraphBase.NonEmpty<any, any, any> >, Streamable.NonEmpty<ValuedGraphElement<N, V>> { /** * Returns a non-empty `Stream` containing all graph elements of this collection as single tuples for isolated nodes * and 3-valued tuples containing the source node, target node, and connection value for connections. * @example * ```ts * ArrowValuedGraphHashed.of([1, 2, 'a'], [2, 3, 'b']).stream().toArray() * // => [[1, 2, 'a'], [2, 3, 'b']] * ``` */ stream(): Stream.NonEmpty<ValuedGraphElement<N, V>>; } /** * A mutable `ArrowValuedGraph` builder used to efficiently create new immutable instances. * See the [Graph documentation](https://rimbu.org/docs/collections/graph) and the [ArrowValuedGraph.Builder API documentation](https://rimbu.org/api/rimbu/graph/ArrowValuedGraph/Builder/interface) * @typeparam N - the node type * @typeparam V - the connection value type */ export interface Builder<N, V> extends ArrowValuedGraphBase.Builder<N, V, ArrowValuedGraph.Types> {} /** * The ArrowValuedGraph's Context instance that serves as a factory for all related immutable instances and builders. * @typeparam UN - the upper type limit for node types for which this context can create instances */ export interface Context<UN> extends ArrowValuedGraphBase.Context<UN, ArrowValuedGraph.Types> {} /** * Utility interface that provides higher-kinded types for this collection. */ export interface Types extends ArrowValuedGraphBase.Types { readonly normal: ArrowValuedGraph<this['_N'], this['_V']>; readonly nonEmpty: ArrowValuedGraph.NonEmpty<this['_N'], this['_V']>; readonly context: ArrowValuedGraph.Context<this['_N']>; readonly builder: ArrowValuedGraph.Builder<this['_N'], this['_V']>; } } export const ArrowValuedGraph: ArrowValuedGraphCreators = Object.freeze({ createContext<UN>(options: { linkMapContext: RMap.Context<UN>; linkConnectionsContext: RMap.Context<UN>; }): ArrowValuedGraph.Context<UN> { return Object.freeze( new ValuedGraphContext<UN, 'ArrowValuedGraph', any>( true, 'ArrowValuedGraph', options.linkMapContext, options.linkConnectionsContext ) ); }, });