Table of Contents

Class SourceGenDictionaryTypeShape<TDictionary, TKey, TValue>

Namespace
PolyType.SourceGenModel
Assembly
PolyType.dll

Source generator model for dictionary shapes.

public sealed class SourceGenDictionaryTypeShape<TDictionary, TKey, TValue> : SourceGenTypeShape<TDictionary>, IDictionaryTypeShape<TDictionary, TKey, TValue>, ITypeShape<TDictionary>, IDictionaryTypeShape, ITypeShape where TKey : notnull

Type Parameters

TDictionary

The type of the dictionary.

TKey

The type of the dictionary key.

TValue

The type of the dictionary value.

Inheritance
SourceGenTypeShape<TDictionary>
SourceGenDictionaryTypeShape<TDictionary, TKey, TValue>
Implements
IDictionaryTypeShape<TDictionary, TKey, TValue>
ITypeShape<TDictionary>
Inherited Members

Properties

AddKeyValuePairFunc

Gets the function that adds a key-value pair to the dictionary.

public Setter<TDictionary, KeyValuePair<TKey, TValue>>? AddKeyValuePairFunc { get; init; }

Property Value

Setter<TDictionary, KeyValuePair<TKey, TValue>>

ConstructionStrategy

Gets the construction strategy for the dictionary.

public required CollectionConstructionStrategy ConstructionStrategy { get; init; }

Property Value

CollectionConstructionStrategy

DefaultConstructorFunc

Gets the function that constructs a default instance of the dictionary type.

public Func<TDictionary>? DefaultConstructorFunc { get; init; }

Property Value

Func<TDictionary>

EnumerableConstructorFunc

Gets the function that constructs a dictionary from an enumerable of key-value pairs.

public Func<IEnumerable<KeyValuePair<TKey, TValue>>, TDictionary>? EnumerableConstructorFunc { get; init; }

Property Value

Func<IEnumerable<KeyValuePair<TKey, TValue>>, TDictionary>

GetDictionaryFunc

Gets the function that extracts a IReadOnlyDictionary<TKey, TValue> from an instance of the dictionary type.

public required Func<TDictionary, IReadOnlyDictionary<TKey, TValue>> GetDictionaryFunc { get; init; }

Property Value

Func<TDictionary, IReadOnlyDictionary<TKey, TValue>>

KeyType

Gets the type shape of the dictionary key.

public required ITypeShape<TKey> KeyType { get; init; }

Property Value

ITypeShape<TKey>

Kind

Gets the TypeShapeKind that the current shape supports.

public override TypeShapeKind Kind { get; }

Property Value

TypeShapeKind

SpanConstructorFunc

Gets the function that constructs a dictionary from a span of key-value pairs.

public SpanConstructor<KeyValuePair<TKey, TValue>, TDictionary>? SpanConstructorFunc { get; init; }

Property Value

SpanConstructor<KeyValuePair<TKey, TValue>, TDictionary>

ValueType

Gets the type shape of the dictionary value.

public required ITypeShape<TValue> ValueType { get; init; }

Property Value

ITypeShape<TValue>

Methods

Accept(TypeShapeVisitor, object?)

Accepts an TypeShapeVisitor for strongly-typed traversal.

public override object? Accept(TypeShapeVisitor visitor, object? state = null)

Parameters

visitor TypeShapeVisitor

The visitor to accept.

state object

The state parameter to pass to the underlying visitor.

Returns

object

The object result returned by the visitor.