Skip to main content
Corvus Connection

Build Dictionary

Collection
collection.dictionary.buildCreates a dictionary by pairing the connected keys with the connected values, in connection order.A Dictionary<K,V> zipping its keys to its values by connection order.

Inputs

Name
Kind
Type
Flags
keysDataanyvariadic
valuesDataanyvariadic

Outputs

Name
Kind
Type
Flags
valueDatadict<any,any>multiplexed

Parameters

Name
Type
Required
Default
Choices
keyTypeSystem.Stringyes"System.String"None
valueTypeSystem.Stringyes"System.Int32"None

Lowers to C#

new Dictionary<K,V> { [k0] = v0, [k1] = v1, … }