class ValuedGraphContext<UN,TT,Tp>
undocumented
Implements: ValuedGraphBase.Context<UN,Tp>
Type parameters
Name | Constraints | Default | Description |
---|---|---|---|
UN | undocumented | ||
TT | string | undocumented | |
Tp | ValuedGraphTypesContextImpl | ValuedGraphTypesContextImpl | undocumented |
Properties
_fixedType
undocumented
_fixedType
isDirected
undocumented
isDirected
linkConnectionsContext
undocumented
linkConnectionsContext
Definition
readonly linkConnectionsContext:
WithGraphValues
<Tp, UN, any>['linkConnectionsContext'];
Overrides
linkMapContext
undocumented
linkMapContext
reducer
undocumented
reducer
Definition
readonly reducer: <N extends UN, V>(source?:
StreamSource
<ValuedGraphElement<N, V>>) => any;
typeTag
undocumented
typeTag
Methods
builder
Returns an empty builder instance.
builder
Definition
builder<N extends UN, V>():
WithGraphValues
<Tp, N, V>['builder'];
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
ArrowValuedGraphHashed.builder<number, string>() // => ArrowValuedGraphHashed.Builder<number, string>
Overrides
createBuilder
undocumented
createBuilder
Definition
createBuilder<N extends UN, V>(source?:
WithGraphValues
<Tp, N, V>['nonEmpty']):
WithGraphValues
<Tp, N, V>['builder'];
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
Parameters
Name | Type | Description |
---|---|---|
source | WithGraphValues <Tp, N, V>['nonEmpty'] |
createNonEmpty
undocumented
createNonEmpty
Definition
createNonEmpty<N extends UN, V>(linkMap:
WithGraphValues
<Tp, N, V>['linkMapNonEmpty'], connectionSize: number):
WithGraphValues
<Tp, N, V>['nonEmpty'];
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
Parameters
Name | Type | Description |
---|---|---|
linkMap | WithGraphValues <Tp, N, V>['linkMapNonEmpty'] | |
connectionSize | number |
empty
Returns the (singleton) empty instance of this type and context with given key and value types.
empty
Definition
empty<N extends UN, V>():
WithGraphValues
<Tp, N, V>['normal'];
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
ArrowValuedGraphHashed.empty<number, string>() // => ArrowValuedGraphHashed<number, string>
ArrowValuedGraphHashed.empty<string, boolean>() // => ArrowValuedGraphHashed<string, boolean>
Overrides
from
Returns an immutable valued Graph, containing the graph elements from each of the given sources
.
from
sources
.Definitions
from<N extends UN, V>(...sources:
ArrayNonEmpty
<
StreamSource.NonEmpty
<ValuedGraphElement<N, V>>>):
WithGraphValues
<Tp, N, V>['nonEmpty'];
from<N extends UN, V>(...sources:
ArrayNonEmpty
<
StreamSource
<ValuedGraphElement<N, V>>>):
WithGraphValues
<Tp, N, V>['normal'];
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
Parameters
Name | Type | Description |
---|---|---|
sources | ArrayNonEmpty < StreamSource.NonEmpty <ValuedGraphElement<N, V>>> | an array of StreamSource instances containing graph elements to add |
ArrowValuedGraphHashed.from([[1], [2]], [[3, 4, 'c']]) // => ArrowValuedGraphHashed.NonEmpty<number, string>
Overrides
isNonEmptyInstance
undocumented
isNonEmptyInstance
Definition
isNonEmptyInstance(source: any): source is
WithGraphValues
<Tp, UN, any>['nonEmpty'];
Parameters
Name | Type | Description |
---|---|---|
source | any |
of
Returns an immutable valued Graph instance containing the graph elements from the given graphElements
.
of
graphElements
.Definition
of<N extends UN, V>(...graphElements:
ArrayNonEmpty
<ValuedGraphElement<N, V>>):
WithGraphValues
<Tp, N, V>['nonEmpty'];
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
Parameters
Name | Type | Description |
---|---|---|
graphElements | ArrayNonEmpty <ValuedGraphElement<N, V>> | a non-empty array of graph elements that are either a single tuple containing a node, or a triplet containing two connection nodes and the connection value. |
ArrowValuedGraphHashed.of([1], [2], [3, 4, 'a']) // => ArrowValuedGraphHashed.NonEmpty<number, string>
Overrides
reducer
Returns a Reducer
that adds valued received graph elements to a ValuedGraph and returns the ValuedGraph as a result. When a source
is given, the reducer will first create a graph from the source, and then add graph elements to it.
reducer
Reducer
that adds valued received graph elements to a ValuedGraph and returns the ValuedGraph as a result. When a source
is given, the reducer will first create a graph from the source, and then add graph elements to it.Definition
reducer<N extends UN, V>(source?:
StreamSource.NonEmpty
<ValuedGraphElement<N, V>>): Reducer<ValuedGraphElement<N, V>,
WithGraphValues
<Tp, N, V>['normal']>;
Type parameters
Name | Constraints | Description |
---|---|---|
N | UN | |
V |
Parameters
Name | Type | Description |
---|---|---|
source | StreamSource.NonEmpty <ValuedGraphElement<N, V>> | (optional) an initial source of graph elements to add to |
const someSource: ValuedGraphElement<number, string>[] = [[1, 2, 'a'], [3], [5]];
const result = Stream.of([1, 3, 'b'], [4, 3, 'c']).reduce(ArrowGraphSorted.reducer(someSource))
result.toArray() // => [[1, 2, 'a'], [1, 3, 'b'], [4, 3, 'c'], [5]]
uses a builder under the hood. If the given source
is a ValuedGraph in the same context, it will directly call .toBuilder()
.