FieldedText TypeScript Library - v0.1.2
    Preparing search index...

    Interface for reading characters from a text source. Mirrors .NET's TextReader for compatibility with C# implementation.

    interface FtTextReader {
        read(): number;
    }

    Implemented by

    Index

    Methods

    Methods

    • Reads the next character from the text reader and advances the character position by one character.

      Returns number

      The character read as a number (charCode), or -1 if the end of the text has been reached.