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
-
SourceGenTypeShape<TUnion>SourceGenUnionTypeShape<TUnion>
- Implements
-
IUnionTypeShape<TUnion>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
GetUnionCaseIndexFunc
Gets a delegate that computes the union case index for a given value.
public required Getter<TUnion, int> GetUnionCaseIndexFunc { get; init; }
Property Value
Kind
Gets the TypeShapeKind that the current shape supports.
public override TypeShapeKind Kind { get; }
Property Value
Methods
Accept(TypeShapeVisitor, object?)
Accepts an TypeShapeVisitor for strongly-typed traversal.
public override object? Accept(TypeShapeVisitor visitor, object? state = null)
Parameters
visitor
TypeShapeVisitorThe visitor to accept.
state
objectThe state parameter to pass to the underlying visitor.