needle icon indicating copy to clipboard operation
needle copied to clipboard

Compiling string matching algorithms and regular expressions to java bytecode

Results 11 needle issues
Sort by recently updated
recently updated
newest added

The [DFAClassBuilder](https://github.com/hyperpape/needle/blob/f37b12ebea7574f93716c2b9ddcaaca044b4d783/needle-compiler/src/main/java/com/justinblank/strings/DFAClassBuilder.java) has several different ways of compiling a DFA to a Java class. The choice of which optimizations to apply is extremely important for performance, and can be easily...