o_LexerApplicability

open override fun o_LexerApplicability(self: AvailObject, codePoint: Int): Boolean?

Answer either null if the filter has not yet run for this Latin1 ([0..255]) code point, true if it has passed, or false if it has failed. These are cached in the 8 Longs of LATIN1_BIT_VECTORS_, in pairs of bits where the upper is the validity bit, and the lower is the previous result of the filter.

Return

Either null for undecided, or a Boolean indicating a previously cached result of having run the lexer's filter for this code point.

Parameters

self

The A_Lexer.

codePoint

The Latin1 ([0..255]) Unicode code point to look up.