Table of Contents

Class SourceGenUnionTypeShape<TUnion>

Namespace
PolyType.SourceGenModel
Assembly
PolyType.dll

Source generator model for union type shapes.

public sealed class SourceGenUnionTypeShape<TUnion> : SourceGenTypeShape<TUnion>, IUnionTypeShape<TUnion>, ITypeShape<TUnion>, IUnionTypeShape, ITypeShape

Type Parameters

TUnion

The type whose shape is described.

Inheritance
SourceGenUnionTypeShape<TUnion>
Implements
ITypeShape<TUnion>
Inherited Members

Properties

BaseType

Gets the underlying type shape of the union base type.

public required ITypeShape<TUnion> BaseType { get; init; }

Property Value

ITypeShape<TUnion>

CreateUnionCasesFunc

Gets a factory method for creating union case shapes.

public required Func<IEnumerable<IUnionCaseShape>> CreateUnionCasesFunc { get; init; }

Property Value

Func<IEnumerable<IUnionCaseShape>>

GetUnionCaseIndexFunc

Gets a delegate that computes the union case index for a given value.

public required Getter<TUnion, int> GetUnionCaseIndexFunc { get; init; }

Property Value

Getter<TUnion, int>

Kind

Gets the TypeShapeKind that the current shape supports.

public override TypeShapeKind Kind { get; }

Property Value

TypeShapeKind

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.