Optimize will pre-compute operations such as list and map construction and optimize call arguments to set membership tests. The set of optimizations will increase over time.
()
| 190 | // Optimize will pre-compute operations such as list and map construction and optimize |
| 191 | // call arguments to set membership tests. The set of optimizations will increase over time. |
| 192 | func Optimize() PlannerOption { |
| 193 | return CustomDecoratorV2(decOptimize()) |
| 194 | } |
| 195 | |
| 196 | // RegexOptimization provides a way to replace an InterpretableCall for a regex function when the |
| 197 | // RegexIndex argument is a string constant. Typically, the Factory would compile the regex pattern at |