Struct regex_syntax::hir::LookSet
source · pub struct LookSet {
pub bits: u32,
}
Expand description
A set of look-around assertions.
This is useful for efficiently tracking look-around assertions. For
example, an Hir
provides properties that return LookSet
s.
Fields§
§bits: u32
The underlying representation this set is exposed to make it possible
to store it somewhere efficiently. The representation is that
of a bitset, where each assertion occupies bit i
where i = Look::as_repr()
.
Note that users of this internal representation must permit the full
range of u16
values to be represented. For example, even if the
current implementation only makes use of the 10 least significant bits,
it may use more bits in a future semver compatible release.
Implementations§
source§impl LookSet
impl LookSet
sourcepub fn full() -> LookSet
pub fn full() -> LookSet
Create a full set of look-around assertions.
This set contains all possible look-around assertions.
sourcepub fn singleton(look: Look) -> LookSet
pub fn singleton(look: Look) -> LookSet
Create a look-around set containing the look-around assertion given.
This is a convenience routine for creating an empty set and inserting one look-around assertions.
sourcepub fn contains(self, look: Look) -> bool
pub fn contains(self, look: Look) -> bool
Returns true if and only if the given look-around assertion is in this set.
sourcepub fn contains_anchor(&self) -> bool
pub fn contains_anchor(&self) -> bool
Returns true if and only if this set contains any anchor assertions. This includes both “start/end of haystack” and “start/end of line.”
sourcepub fn contains_anchor_haystack(&self) -> bool
pub fn contains_anchor_haystack(&self) -> bool
Returns true if and only if this set contains any “start/end of haystack” anchors. This doesn’t include “start/end of line” anchors.
sourcepub fn contains_anchor_line(&self) -> bool
pub fn contains_anchor_line(&self) -> bool
Returns true if and only if this set contains any “start/end of line”
anchors. This doesn’t include “start/end of haystack” anchors. This
includes both \n
line anchors and CRLF (\r\n
) aware line anchors.
sourcepub fn contains_anchor_lf(&self) -> bool
pub fn contains_anchor_lf(&self) -> bool
Returns true if and only if this set contains any “start/end of line”
anchors that only treat \n
as line terminators. This does not include
haystack anchors or CRLF aware line anchors.
sourcepub fn contains_anchor_crlf(&self) -> bool
pub fn contains_anchor_crlf(&self) -> bool
Returns true if and only if this set contains any “start/end of line” anchors that are CRLF-aware. This doesn’t include “start/end of haystack” or “start/end of line-feed” anchors.
sourcepub fn contains_word(self) -> bool
pub fn contains_word(self) -> bool
Returns true if and only if this set contains any word boundary or negated word boundary assertions. This include both Unicode and ASCII word boundaries.
sourcepub fn contains_word_unicode(self) -> bool
pub fn contains_word_unicode(self) -> bool
Returns true if and only if this set contains any Unicode word boundary or negated Unicode word boundary assertions.
sourcepub fn contains_word_ascii(self) -> bool
pub fn contains_word_ascii(self) -> bool
Returns true if and only if this set contains any ASCII word boundary or negated ASCII word boundary assertions.
sourcepub fn iter(self) -> LookSetIter ⓘ
pub fn iter(self) -> LookSetIter ⓘ
Returns an iterator over all of the look-around assertions in this set.
sourcepub fn insert(self, look: Look) -> LookSet
pub fn insert(self, look: Look) -> LookSet
Return a new set that is equivalent to the original, but with the given assertion added to it. If the assertion is already in the set, then the returned set is equivalent to the original.
sourcepub fn set_insert(&mut self, look: Look)
pub fn set_insert(&mut self, look: Look)
Updates this set in place with the result of inserting the given assertion into this set.
sourcepub fn remove(self, look: Look) -> LookSet
pub fn remove(self, look: Look) -> LookSet
Return a new set that is equivalent to the original, but with the given assertion removed from it. If the assertion is not in the set, then the returned set is equivalent to the original.
sourcepub fn set_remove(&mut self, look: Look)
pub fn set_remove(&mut self, look: Look)
Updates this set in place with the result of removing the given assertion from this set.
sourcepub fn subtract(self, other: LookSet) -> LookSet
pub fn subtract(self, other: LookSet) -> LookSet
Returns a new set that is the result of subtracting the given set from this set.
sourcepub fn set_subtract(&mut self, other: LookSet)
pub fn set_subtract(&mut self, other: LookSet)
Updates this set in place with the result of subtracting the given set from this set.
sourcepub fn union(self, other: LookSet) -> LookSet
pub fn union(self, other: LookSet) -> LookSet
Returns a new set that is the union of this and the one given.
sourcepub fn set_union(&mut self, other: LookSet)
pub fn set_union(&mut self, other: LookSet)
Updates this set in place with the result of unioning it with the one given.
sourcepub fn intersect(self, other: LookSet) -> LookSet
pub fn intersect(self, other: LookSet) -> LookSet
Returns a new set that is the intersection of this and the one given.
sourcepub fn set_intersect(&mut self, other: LookSet)
pub fn set_intersect(&mut self, other: LookSet)
Updates this set in place with the result of intersecting it with the one given.
sourcepub fn read_repr(slice: &[u8]) -> LookSet
pub fn read_repr(slice: &[u8]) -> LookSet
Return a LookSet
from the slice given as a native endian 32-bit
integer.
§Panics
This panics if slice.len() < 4
.
sourcepub fn write_repr(self, slice: &mut [u8])
pub fn write_repr(self, slice: &mut [u8])
Write a LookSet
as a native endian 32-bit integer to the beginning
of the slice given.
§Panics
This panics if slice.len() < 4
.
Trait Implementations§
source§impl PartialEq for LookSet
impl PartialEq for LookSet
impl Copy for LookSet
impl Eq for LookSet
impl StructuralPartialEq for LookSet
Auto Trait Implementations§
impl Freeze for LookSet
impl RefUnwindSafe for LookSet
impl Send for LookSet
impl Sync for LookSet
impl Unpin for LookSet
impl UnwindSafe for LookSet
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)