We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
LexBuffer<'char> has this static method:
LexBuffer<'char>
static member LexemeString(lexbuf: LexBuffer<char>) = System.String(lexbuf.Buffer, lexbuf.BufferScanStart, lexbuf.LexemeLength)
See https://github.com/fsprojects/FsLexYacc/blob/master/src/FsLexYacc.Runtime/Lexing.fs#L178C58-L178C58
We would like to try and get access to the buffer, without necessarily allocating a string, e.g.:
#if NETSTANDARD2_1 static member LexemeSpan(lexbuf: LexBuffer<char>) = new ReadOnlySpan<char>(lexbuf.Buffer, lexbuf.BufferScanStart, lexbuf.LexemeLength) #endif
For example, we could use a StringPool to reuse prior allocations of equivalent strings:
StringPool
let ident = StringPool.Shared.GetOrAdd(lexemeSpan)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
LexBuffer<'char>
has this static method:See https://github.com/fsprojects/FsLexYacc/blob/master/src/FsLexYacc.Runtime/Lexing.fs#L178C58-L178C58
We would like to try and get access to the buffer, without necessarily allocating a string, e.g.:
For example, we could use a
StringPool
to reuse prior allocations of equivalent strings:The text was updated successfully, but these errors were encountered: