Table of Contents

Class RangeMatch

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

Matches any single character within an inclusive range, e.g. 'a'..'z'.

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

Constructors

RangeMatch(char, char)

Matches any single character within an inclusive range, e.g. 'a'..'z'.

public RangeMatch(char From, char To)

Parameters

From char
To char

Properties

From

public char From { get; init; }

Property Value

char

To

public char To { get; init; }

Property Value

char