Currently the validate_condition() function runs Lark or compiles a regex at least once per cell. It should be more efficient to "compile" the condition just once into a function with just the value as the argument. This should be possible when the config is built.
Currently the
validate_condition()
function runs Lark or compiles a regex at least once per cell. It should be more efficient to "compile" the condition just once into a function with just thevalue
as the argument. This should be possible when theconfig
is built.