[][src]Struct sdset::multi::DifferenceByKey

pub struct DifferenceByKey<'a, T: 'a, U: 'a, F, G, K> where
    F: Fn(&T) -> K,
    G: Fn(&U) -> K,
    K: Ord
{ /* fields omitted */ }

Represent the difference set operation that will be applied to multiple slices of two different types.

Examples

use sdset::multi::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: 4, b: 10 },
])?;
let b = Set::new(&[2, 3, 5, 7])?;
let c = Set::new(&[4, 6, 7])?;

// 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::from_vec(a, vec![b, c], f, g).difference();
let res: SetBuf<Foo> = op.into_set_buf();

assert_eq!(&res[..], &[Foo{ a: 1, b: 6 }, Foo{ a: 1, b: 7 }, Foo{ a: 1, b: 8 }]);

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]

pub fn new(base: &'a Set<T>, others: Vec<&'a Set<U>>, f: F, g: G) -> Self[src]

Construct one with slices checked to be sorted and deduplicated.

Trait Implementations

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, 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<T> for DifferenceByKey<'a, T, U, F, G, K> where
    T: Clone,
    F: Fn(&T) -> K,
    G: Fn(&U) -> K,
    K: Ord
[src]

Auto Trait Implementations

impl<'a, T, U, F, G, K> RefUnwindSafe for DifferenceByKey<'a, T, U, F, G, K> where
    F: RefUnwindSafe,
    G: RefUnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe

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> Unpin for DifferenceByKey<'a, T, U, F, G, K> where
    F: Unpin,
    G: Unpin

impl<'a, T, U, F, G, K> UnwindSafe for DifferenceByKey<'a, T, U, F, G, K> where
    F: UnwindSafe,
    G: UnwindSafe,
    T: RefUnwindSafe,
    U: RefUnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.