Module regex

Module regex 

Source

Structs§

CompiledRegex
Summary
Groups
Handle
Summary
Match
Summary
RegexBuilder
Summary
RegexError
Summary

Enums§

Allowed
The allowed named regex in a single match. This is useful is you want to prevent the engine from matching certain regex by not allowing them. It is very efficient in the sense that the complexity of a match depends only on the number of allowed regex, not on the number of compiled regex, which means it is a good idea to compile all regex at once, into a single engine, and then filter the one used for a certain match.