MCPcopy Create free account
hub / github.com/davidblewett/rure-python / only_utf8

Method only_utf8

regex/src/exec.rs:208–211  ·  view source on GitHub ↗

When disabled, the program compiled may match arbitrary bytes. When enabled (the default), all compiled programs exclusively match valid UTF-8 bytes.

(mut self, yes: bool)

Source from the content-addressed store, hash-verified

206 /// When enabled (the default), all compiled programs exclusively match
207 /// valid UTF-8 bytes.
208 pub fn only_utf8(mut self, yes: bool) -> Self {
209 self.only_utf8 = yes;
210 self
211 }
212
213 /// Set the Unicode flag.
214 pub fn unicode(mut self, yes: bool) -> Self {

Callers 4

cmd_capturesFunction · 0.45
cmd_compileFunction · 0.45
buildMethod · 0.45

Calls

no outgoing calls