Open itsjunetime opened 9 months ago
@arijit79 here's the PR to get the final end position of a match within a string
This PR also fixes a few other things that clippy was complaining about, and switches a (String, bool) to Option<String> to avoid an allocation
(String, bool)
Option<String>
@arijit79 here's the PR to get the final end position of a match within a string
This PR also fixes a few other things that clippy was complaining about, and switches a
(String, bool)
toOption<String>
to avoid an allocation