Skip to content

Commit

Permalink
acl map support formula/regex
Browse files Browse the repository at this point in the history
  • Loading branch information
divi255 committed Jan 4, 2025
1 parent db7e23b commit 501084f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/aclmap.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ impl AclMap {
self
}
#[inline]
pub fn formula_prefix(mut self, formula_prefix: &str) -> Self {
self.smap = self.smap.formula_prefix(formula_prefix);
self
}
#[inline]
pub fn regex_prefix(mut self, regex_prefix: &str) -> Self {
self.smap = self.smap.regex_prefix(regex_prefix);
self
}
#[inline]
pub fn wildcard_multiple(mut self, wildcard_multiple: &[&str]) -> Self {
self.smap = self.smap.wildcard_multiple(wildcard_multiple);
self
Expand Down

0 comments on commit 501084f

Please sign in to comment.