[−][src]Struct sdset::duo::DifferenceByKey
Represent the difference set operation that will be applied to two slices of different types.
Examples
use sdset::duo::OpBuilderByKey; use sdset::{SetOperation, Set, SetBuf}; #[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)] struct Foo { a: i32, b: u8 } let a = Set::new(&[ Foo{ a: 1, b: 6 }, Foo{ a: 1, b: 7 }, Foo{ a: 1, b: 8 }, Foo{ a: 2, b: 9 }, Foo{ a: 2, b: 10 }, Foo{ a: 3, b: 10 }, ])?; let b = Set::new(&[1, 3, 4, 5]).unwrap(); // Return the field of Foo that will be used for comparison let f = |x: &Foo| x.a; // directly use the i32 for comparison let g = |x: &i32| *x; let op = OpBuilderByKey::new(a, b, f, g).difference(); let res: SetBuf<Foo> = op.into_set_buf(); assert_eq!(res.as_slice(), &[Foo{ a: 2, b: 9 }, Foo{ a: 2, b: 10 }][..]);
Methods
impl<'a, T, U, F, G, K> DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, [src]
impl<'a, T, U, F, G, K> DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, pub fn new(a: &'a Set<T>, b: &'a Set<U>, f: F, g: G) -> Self[src]
pub fn new(a: &'a Set<T>, b: &'a Set<U>, f: F, g: G) -> SelfConstruct one with slices checked to be sorted and deduplicated.
Trait Implementations
impl<'a, T, U, F, G, K> SetOperation<T> for DifferenceByKey<'a, T, U, F, G, K> where
T: Clone,
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, [src]
impl<'a, T, U, F, G, K> SetOperation<T> for DifferenceByKey<'a, T, U, F, G, K> where
T: Clone,
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, fn extend_vec(self, output: &mut Vec<T>)[src]
fn extend_vec(self, output: &mut Vec<T>)fn into_set_buf(self) -> SetBuf<T>[src]
fn into_set_buf(self) -> SetBuf<T>Create a SetBuf using the SetOperation::extend_vec method.
impl<'a, T, U, F, G, K> SetOperation<&'a T> for DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, [src]
impl<'a, T, U, F, G, K> SetOperation<&'a T> for DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, fn extend_vec(self, output: &mut Vec<&'a T>)[src]
fn extend_vec(self, output: &mut Vec<&'a T>)fn into_set_buf(self) -> SetBuf<T>[src]
fn into_set_buf(self) -> SetBuf<T>Create a SetBuf using the SetOperation::extend_vec method.
impl<'a, T: Clone + 'a, U: Clone + 'a, F: Clone, G: Clone, K: Clone> Clone for DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, [src]
impl<'a, T: Clone + 'a, U: Clone + 'a, F: Clone, G: Clone, K: Clone> Clone for DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, fn clone(&self) -> DifferenceByKey<'a, T, U, F, G, K>[src]
fn clone(&self) -> DifferenceByKey<'a, T, U, F, G, K>Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
fn clone_from(&mut self, source: &Self)Performs copy-assignment from source. Read more
impl<'a, T: Copy + 'a, U: Copy + 'a, F: Copy, G: Copy, K: Copy> Copy for DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, [src]
impl<'a, T: Copy + 'a, U: Copy + 'a, F: Copy, G: Copy, K: Copy> Copy for DifferenceByKey<'a, T, U, F, G, K> where
F: Fn(&T) -> K,
G: Fn(&U) -> K,
K: Ord, Auto Trait Implementations
impl<'a, T, U, F, G, K> Send for DifferenceByKey<'a, T, U, F, G, K> where
F: Send,
G: Send,
T: Sync,
U: Sync,
impl<'a, T, U, F, G, K> Send for DifferenceByKey<'a, T, U, F, G, K> where
F: Send,
G: Send,
T: Sync,
U: Sync, impl<'a, T, U, F, G, K> Sync for DifferenceByKey<'a, T, U, F, G, K> where
F: Sync,
G: Sync,
T: Sync,
U: Sync,
impl<'a, T, U, F, G, K> Sync for DifferenceByKey<'a, T, U, F, G, K> where
F: Sync,
G: Sync,
T: Sync,
U: Sync, Blanket Implementations
impl<T, U> Into for T where
U: From<T>, [src]
impl<T, U> Into for T where
U: From<T>, impl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, type Owned = T
fn to_owned(&self) -> T[src]
fn to_owned(&self) -> TCreates owned data from borrowed data, usually by cloning. Read more
fn clone_into(&self, target: &mut T)[src]
fn clone_into(&self, target: &mut T)🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<T> From for T[src]
impl<T> From for Timpl<T, U> TryFrom for T where
T: From<U>, [src]
impl<T, U> TryFrom for T where
T: From<U>, type Error = !
try_from)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>try_from)Performs the conversion.
impl<T> Borrow for T where
T: ?Sized, [src]
impl<T> Borrow for T where
T: ?Sized, impl<T> BorrowMut for T where
T: ?Sized, [src]
impl<T> BorrowMut for T where
T: ?Sized, fn borrow_mut(&mut self) -> &mut T[src]
fn borrow_mut(&mut self) -> &mut TMutably borrows from an owned value. Read more
impl<T, U> TryInto for T where
U: TryFrom<T>, [src]
impl<T, U> TryInto for T where
U: TryFrom<T>, type Error = <U as TryFrom<T>>::Error
try_from)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>try_from)Performs the conversion.
impl<T> Any for T where
T: 'static + ?Sized, [src]
impl<T> Any for T where
T: 'static + ?Sized, fn get_type_id(&self) -> TypeId[src]
fn get_type_id(&self) -> TypeId🔬 This is a nightly-only experimental API. (get_type_id)
this method will likely be replaced by an associated static
Gets the TypeId of self. Read more