DLexer.this - multiple declarations

Function DLexer.this

@disable this();

Function DLexer.this

this(R) (
  R range,
  const LexerConfig config,
  StringCache* cache,
  bool haveSSE42 = sse42()
) pure nothrow @safe
if (is(Unqual!(ElementEncodingType!R) : ubyte) && isDynamicArray!R);

Parameters

NameDescription
range the bytes that compose the source code that will be lexed.
config the lexer configuration to use.
cache the string interning cache for de-duplicating identifiers and other token text.
haveSSE42 Parse streaming SIMD Extensions 4.2 in inline assembly