NEST by Elastic and contributors

<PackageReference Include="NEST" Version="7.1.0" />

.NET API 4,319,232 bytes

 ILowercaseTokenizer

public interface ILowercaseTokenizer : ITokenizer
A tokenizer of type lowercase that performs the function of Letter Tokenizer and Lower Case Token Filter together.

It divides text at non-letters and converts them to lower case.

While it is functionally equivalent to the combination of Letter Tokenizer and Lower Case Token Filter,

there is a performance advantage to doing the two tasks at once, hence this (redundant) implementation.