Table of Contents

Class Sequence

Namespace
Utils.Parser.Model
Assembly
Utils.Parser.dll

An ordered sequence of grammar elements that must all match in order: A B C.

public record Sequence : RuleContent, IEquatable<RuleContent>, IEquatable<Sequence>
Inheritance
Sequence
Implements
Inherited Members
Extension Methods

Constructors

Sequence(IReadOnlyList<RuleContent>)

An ordered sequence of grammar elements that must all match in order: A B C.

public Sequence(IReadOnlyList<RuleContent> Items)

Parameters

Items IReadOnlyList<RuleContent>

Properties

Items

Gets the immutable ordered snapshot of sequence items.

public IReadOnlyList<RuleContent> Items { get; init; }

Property Value

IReadOnlyList<RuleContent>