Struct predicates::iter::InPredicate
source · pub struct InPredicate<T>{ /* private fields */ }
Expand description
Predicate that returns true
if variable
is a member of the pre-defined
set, otherwise returns false
.
Note that this implementation places the fewest restrictions on the
underlying Item
type at the expense of having the least performant
implementation (linear search). If the type to be searched is Hash + Eq
,
it is much more efficient to use HashableInPredicate
and
in_hash
. The implementation-specific predicates will be
deprecated when Rust supports trait specialization.
Implementations§
source§impl<T> InPredicate<T>
impl<T> InPredicate<T>
sourcepub fn sort(self) -> OrdInPredicate<T>
pub fn sort(self) -> OrdInPredicate<T>
Creates a new predicate that will return true
when the given variable
is
contained with the set of items provided.
Note that this implementation requires Item
to be Ord
. The
InPredicate
uses a less efficient search algorithm but only
requires Item
implement PartialEq
. The implementation-specific
predicates will be deprecated when Rust supports trait specialization.
§Examples
use predicates::prelude::*;
let predicate_fn = predicate::in_iter(vec![1, 3, 5]).sort();
assert_eq!(true, predicate_fn.eval(&1));
assert_eq!(false, predicate_fn.eval(&2));
assert_eq!(true, predicate_fn.eval(&3));
let predicate_fn = predicate::in_iter(vec!["a", "c", "e"]).sort();
assert_eq!(true, predicate_fn.eval("a"));
assert_eq!(false, predicate_fn.eval("b"));
assert_eq!(true, predicate_fn.eval("c"));
Trait Implementations§
source§impl<T> Clone for InPredicate<T>
impl<T> Clone for InPredicate<T>
source§fn clone(&self) -> InPredicate<T>
fn clone(&self) -> InPredicate<T>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<T> Debug for InPredicate<T>
impl<T> Debug for InPredicate<T>
source§impl<T> Display for InPredicate<T>
impl<T> Display for InPredicate<T>
source§impl<T> PartialEq for InPredicate<T>
impl<T> PartialEq for InPredicate<T>
source§impl<'a, T> Predicate<T> for InPredicate<&'a T>
impl<'a, T> Predicate<T> for InPredicate<&'a T>
source§impl<T> Predicate<T> for InPredicate<T>
impl<T> Predicate<T> for InPredicate<T>
source§impl<T> PredicateReflection for InPredicate<T>
impl<T> PredicateReflection for InPredicate<T>
impl<T> Eq for InPredicate<T>
impl<T> StructuralPartialEq for InPredicate<T>
Auto Trait Implementations§
impl<T> Freeze for InPredicate<T>
impl<T> RefUnwindSafe for InPredicate<T>where
T: RefUnwindSafe,
impl<T> Send for InPredicate<T>where
T: Send,
impl<T> Sync for InPredicate<T>where
T: Sync,
impl<T> Unpin for InPredicate<T>where
T: Unpin,
impl<T> UnwindSafe for InPredicate<T>where
T: UnwindSafe,
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: 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
)source§impl<P, Item> PredicateBooleanExt<Item> for P
impl<P, Item> PredicateBooleanExt<Item> for P
source§fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
fn and<B>(self, other: B) -> AndPredicate<Self, B, Item>
Predicate
results, returning the result. Read moresource§fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
fn or<B>(self, other: B) -> OrPredicate<Self, B, Item>
Predicate
results, returning the result. Read moresource§impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
impl<P, Item> PredicateBoxExt<Item> for Pwhere
P: Predicate<Item>,
source§impl<P> PredicateFileContentExt for P
impl<P> PredicateFileContentExt for P
source§fn from_file_path(self) -> FileContentPredicate<Self>
fn from_file_path(self) -> FileContentPredicate<Self>
source§impl<P, Item> PredicateNameExt<Item> for P
impl<P, Item> PredicateNameExt<Item> for P
source§impl<P> PredicateStrExt for P
impl<P> PredicateStrExt for P
source§fn trim(self) -> TrimPredicate<Self>
fn trim(self) -> TrimPredicate<Self>
source§fn from_utf8(self) -> Utf8Predicate<Self>
fn from_utf8(self) -> Utf8Predicate<Self>
source§fn normalize(self) -> NormalizedPredicate<Self>
fn normalize(self) -> NormalizedPredicate<Self>
NormalizedPredicate
that ensures
the newlines within the data passed to Self
is normalised. Read more