Table of Contents

Struct RuntimeTokenizerPosition

Namespace
Utils.Parser.Runtime
Assembly
Utils.Parser.dll

Represents a read-only tokenizer position.

public readonly record struct RuntimeTokenizerPosition : IEquatable<RuntimeTokenizerPosition>
Implements
Inherited Members
Extension Methods

Constructors

RuntimeTokenizerPosition(int, int)

Represents a read-only tokenizer position.

public RuntimeTokenizerPosition(int Index, int Length)

Parameters

Index int

Current token start index.

Length int

Current token length.

Properties

Index

Current token start index.

public int Index { get; init; }

Property Value

int

Length

Current token length.

public int Length { get; init; }

Property Value

int