1.0.0[−][src]Trait boolean_enums::lstd::ops::BitAnd
The bitwise AND operator &
.
Note that RHS
is Self
by default, but this is not mandatory.
Examples
An implementation of BitAnd
for a wrapper around bool
.
use std::ops::BitAnd; #[derive(Debug, PartialEq)] struct Scalar(bool); impl BitAnd for Scalar { type Output = Self; // rhs is the "right-hand side" of the expression `a & b` fn bitand(self, rhs: Self) -> Self { Scalar(self.0 & rhs.0) } } assert_eq!(Scalar(true) & Scalar(true), Scalar(true)); assert_eq!(Scalar(true) & Scalar(false), Scalar(false)); assert_eq!(Scalar(false) & Scalar(true), Scalar(false)); assert_eq!(Scalar(false) & Scalar(false), Scalar(false));
An implementation of BitAnd
for a wrapper around Vec<bool>
.
use std::ops::BitAnd; #[derive(Debug, PartialEq)] struct BooleanVector(Vec<bool>); impl BitAnd for BooleanVector { type Output = Self; fn bitand(self, BooleanVector(rhs): Self) -> Self { let BooleanVector(lhs) = self; assert_eq!(lhs.len(), rhs.len()); BooleanVector(lhs.iter().zip(rhs.iter()).map(|(x, y)| *x && *y).collect()) } } let bv1 = BooleanVector(vec![true, true, false, false]); let bv2 = BooleanVector(vec![true, false, true, false]); let expected = BooleanVector(vec![true, false, false, false]); assert_eq!(bv1 & bv2, expected);
Associated Types
type Output
The resulting type after applying the &
operator.
Required methods
Loading content...Implementations on Foreign Types
impl<'a> BitAnd<&'a u16> for u16
[src]
impl<'a> BitAnd<&'a u16> for u16
type Output = <u16 as BitAnd<u16>>::Output
fn bitand(self, other: &'a u16) -> <u16 as BitAnd<u16>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a isize> for &'b isize
[src]
impl<'a, 'b> BitAnd<&'a isize> for &'b isize
type Output = <isize as BitAnd<isize>>::Output
fn bitand(self, other: &'a isize) -> <isize as BitAnd<isize>>::Output | [src] |
impl<'a> BitAnd<&'a isize> for isize
[src]
impl<'a> BitAnd<&'a isize> for isize
type Output = <isize as BitAnd<isize>>::Output
fn bitand(self, other: &'a isize) -> <isize as BitAnd<isize>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a u16> for &'b u16
[src]
impl<'a, 'b> BitAnd<&'a u16> for &'b u16
type Output = <u16 as BitAnd<u16>>::Output
fn bitand(self, other: &'a u16) -> <u16 as BitAnd<u16>>::Output | [src] |
impl<'a> BitAnd<&'a u64> for u64
[src]
impl<'a> BitAnd<&'a u64> for u64
type Output = <u64 as BitAnd<u64>>::Output
fn bitand(self, other: &'a u64) -> <u64 as BitAnd<u64>>::Output | [src] |
impl BitAnd<i32> for i32
[src]
impl BitAnd<i32> for i32
impl<'a> BitAnd<&'a i16> for i16
[src]
impl<'a> BitAnd<&'a i16> for i16
type Output = <i16 as BitAnd<i16>>::Output
fn bitand(self, other: &'a i16) -> <i16 as BitAnd<i16>>::Output | [src] |
impl<'a> BitAnd<bool> for &'a bool
[src]
impl<'a> BitAnd<bool> for &'a bool
type Output = <bool as BitAnd<bool>>::Output
fn bitand(self, other: bool) -> <bool as BitAnd<bool>>::Output | [src] |
impl<'a> BitAnd<i128> for &'a i128
[src]
impl<'a> BitAnd<i128> for &'a i128
type Output = <i128 as BitAnd<i128>>::Output
fn bitand(self, other: i128) -> <i128 as BitAnd<i128>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a u8> for &'b u8
[src]
impl<'a, 'b> BitAnd<&'a u8> for &'b u8
type Output = <u8 as BitAnd<u8>>::Output
fn bitand(self, other: &'a u8) -> <u8 as BitAnd<u8>>::Output | [src] |
impl BitAnd<u64> for u64
[src]
impl BitAnd<u64> for u64
impl<'a> BitAnd<i32> for &'a i32
[src]
impl<'a> BitAnd<i32> for &'a i32
type Output = <i32 as BitAnd<i32>>::Output
fn bitand(self, other: i32) -> <i32 as BitAnd<i32>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a u128> for &'b u128
[src]
impl<'a, 'b> BitAnd<&'a u128> for &'b u128
type Output = <u128 as BitAnd<u128>>::Output
fn bitand(self, other: &'a u128) -> <u128 as BitAnd<u128>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a i16> for &'b i16
[src]
impl<'a, 'b> BitAnd<&'a i16> for &'b i16
type Output = <i16 as BitAnd<i16>>::Output
fn bitand(self, other: &'a i16) -> <i16 as BitAnd<i16>>::Output | [src] |
impl<'a> BitAnd<u128> for &'a u128
[src]
impl<'a> BitAnd<u128> for &'a u128
type Output = <u128 as BitAnd<u128>>::Output
fn bitand(self, other: u128) -> <u128 as BitAnd<u128>>::Output | [src] |
impl BitAnd<usize> for usize
[src]
impl BitAnd<usize> for usize
impl BitAnd<u16> for u16
[src]
impl BitAnd<u16> for u16
impl BitAnd<u32> for u32
[src]
impl BitAnd<u32> for u32
impl<'a> BitAnd<&'a i32> for i32
[src]
impl<'a> BitAnd<&'a i32> for i32
type Output = <i32 as BitAnd<i32>>::Output
fn bitand(self, other: &'a i32) -> <i32 as BitAnd<i32>>::Output | [src] |
impl<'a> BitAnd<u64> for &'a u64
[src]
impl<'a> BitAnd<u64> for &'a u64
type Output = <u64 as BitAnd<u64>>::Output
fn bitand(self, other: u64) -> <u64 as BitAnd<u64>>::Output | [src] |
impl BitAnd<u8> for u8
[src]
impl BitAnd<u8> for u8
impl<'a> BitAnd<&'a i128> for i128
[src]
impl<'a> BitAnd<&'a i128> for i128
type Output = <i128 as BitAnd<i128>>::Output
fn bitand(self, other: &'a i128) -> <i128 as BitAnd<i128>>::Output | [src] |
impl BitAnd<bool> for bool
[src]
impl BitAnd<bool> for bool
impl<'a> BitAnd<i64> for &'a i64
[src]
impl<'a> BitAnd<i64> for &'a i64
type Output = <i64 as BitAnd<i64>>::Output
fn bitand(self, other: i64) -> <i64 as BitAnd<i64>>::Output | [src] |
impl<'a> BitAnd<u16> for &'a u16
[src]
impl<'a> BitAnd<u16> for &'a u16
type Output = <u16 as BitAnd<u16>>::Output
fn bitand(self, other: u16) -> <u16 as BitAnd<u16>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a u32> for &'b u32
[src]
impl<'a, 'b> BitAnd<&'a u32> for &'b u32
type Output = <u32 as BitAnd<u32>>::Output
fn bitand(self, other: &'a u32) -> <u32 as BitAnd<u32>>::Output | [src] |
impl BitAnd<i16> for i16
[src]
impl BitAnd<i16> for i16
impl BitAnd<i128> for i128
[src]
impl BitAnd<i128> for i128
impl<'a, 'b> BitAnd<&'a i8> for &'b i8
[src]
impl<'a, 'b> BitAnd<&'a i8> for &'b i8
type Output = <i8 as BitAnd<i8>>::Output
fn bitand(self, other: &'a i8) -> <i8 as BitAnd<i8>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a i64> for &'b i64
[src]
impl<'a, 'b> BitAnd<&'a i64> for &'b i64
type Output = <i64 as BitAnd<i64>>::Output
fn bitand(self, other: &'a i64) -> <i64 as BitAnd<i64>>::Output | [src] |
impl<'a> BitAnd<&'a u8> for u8
[src]
impl<'a> BitAnd<&'a u8> for u8
type Output = <u8 as BitAnd<u8>>::Output
fn bitand(self, other: &'a u8) -> <u8 as BitAnd<u8>>::Output | [src] |
impl<'a> BitAnd<usize> for &'a usize
[src]
impl<'a> BitAnd<usize> for &'a usize
type Output = <usize as BitAnd<usize>>::Output
fn bitand(self, other: usize) -> <usize as BitAnd<usize>>::Output | [src] |
impl BitAnd<i8> for i8
[src]
impl BitAnd<i8> for i8
impl<'a, 'b> BitAnd<&'a i128> for &'b i128
[src]
impl<'a, 'b> BitAnd<&'a i128> for &'b i128
type Output = <i128 as BitAnd<i128>>::Output
fn bitand(self, other: &'a i128) -> <i128 as BitAnd<i128>>::Output | [src] |
impl<'a> BitAnd<&'a usize> for usize
[src]
impl<'a> BitAnd<&'a usize> for usize
type Output = <usize as BitAnd<usize>>::Output
fn bitand(self, other: &'a usize) -> <usize as BitAnd<usize>>::Output | [src] |
impl<'a> BitAnd<u32> for &'a u32
[src]
impl<'a> BitAnd<u32> for &'a u32
type Output = <u32 as BitAnd<u32>>::Output
fn bitand(self, other: u32) -> <u32 as BitAnd<u32>>::Output | [src] |
impl<'a> BitAnd<u8> for &'a u8
[src]
impl<'a> BitAnd<u8> for &'a u8
type Output = <u8 as BitAnd<u8>>::Output
fn bitand(self, other: u8) -> <u8 as BitAnd<u8>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a bool> for &'b bool
[src]
impl<'a, 'b> BitAnd<&'a bool> for &'b bool
type Output = <bool as BitAnd<bool>>::Output
fn bitand(self, other: &'a bool) -> <bool as BitAnd<bool>>::Output | [src] |
impl<'a> BitAnd<isize> for &'a isize
[src]
impl<'a> BitAnd<isize> for &'a isize
type Output = <isize as BitAnd<isize>>::Output
fn bitand(self, other: isize) -> <isize as BitAnd<isize>>::Output | [src] |
impl BitAnd<i64> for i64
[src]
impl BitAnd<i64> for i64
impl<'a, 'b> BitAnd<&'a u64> for &'b u64
[src]
impl<'a, 'b> BitAnd<&'a u64> for &'b u64
type Output = <u64 as BitAnd<u64>>::Output
fn bitand(self, other: &'a u64) -> <u64 as BitAnd<u64>>::Output | [src] |
impl BitAnd<isize> for isize
[src]
impl BitAnd<isize> for isize
impl<'a> BitAnd<&'a u128> for u128
[src]
impl<'a> BitAnd<&'a u128> for u128
type Output = <u128 as BitAnd<u128>>::Output
fn bitand(self, other: &'a u128) -> <u128 as BitAnd<u128>>::Output | [src] |
impl<'a> BitAnd<&'a i8> for i8
[src]
impl<'a> BitAnd<&'a i8> for i8
type Output = <i8 as BitAnd<i8>>::Output
fn bitand(self, other: &'a i8) -> <i8 as BitAnd<i8>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a usize> for &'b usize
[src]
impl<'a, 'b> BitAnd<&'a usize> for &'b usize
type Output = <usize as BitAnd<usize>>::Output
fn bitand(self, other: &'a usize) -> <usize as BitAnd<usize>>::Output | [src] |
impl<'a> BitAnd<i16> for &'a i16
[src]
impl<'a> BitAnd<i16> for &'a i16
type Output = <i16 as BitAnd<i16>>::Output
fn bitand(self, other: i16) -> <i16 as BitAnd<i16>>::Output | [src] |
impl<'a> BitAnd<&'a i64> for i64
[src]
impl<'a> BitAnd<&'a i64> for i64
type Output = <i64 as BitAnd<i64>>::Output
fn bitand(self, other: &'a i64) -> <i64 as BitAnd<i64>>::Output | [src] |
impl<'a> BitAnd<&'a bool> for bool
[src]
impl<'a> BitAnd<&'a bool> for bool
type Output = <bool as BitAnd<bool>>::Output
fn bitand(self, other: &'a bool) -> <bool as BitAnd<bool>>::Output | [src] |
impl<'a, 'b> BitAnd<&'a i32> for &'b i32
[src]
impl<'a, 'b> BitAnd<&'a i32> for &'b i32
type Output = <i32 as BitAnd<i32>>::Output
fn bitand(self, other: &'a i32) -> <i32 as BitAnd<i32>>::Output | [src] |
impl<'a> BitAnd<i8> for &'a i8
[src]
impl<'a> BitAnd<i8> for &'a i8
type Output = <i8 as BitAnd<i8>>::Output
fn bitand(self, other: i8) -> <i8 as BitAnd<i8>>::Output | [src] |
impl<'a> BitAnd<&'a u32> for u32
[src]
impl<'a> BitAnd<&'a u32> for u32
type Output = <u32 as BitAnd<u32>>::Output
fn bitand(self, other: &'a u32) -> <u32 as BitAnd<u32>>::Output | [src] |
impl BitAnd<u128> for u128
[src]
Loading content...
impl BitAnd<u128> for u128
Implementors
impl BitAnd<Wrapping<i128>> for Wrapping<i128>
[src]
impl BitAnd<Wrapping<i128>> for Wrapping<i128>
impl BitAnd<Wrapping<i16>> for Wrapping<i16>
[src]
impl BitAnd<Wrapping<i16>> for Wrapping<i16>
impl BitAnd<Wrapping<i32>> for Wrapping<i32>
[src]
impl BitAnd<Wrapping<i32>> for Wrapping<i32>
impl BitAnd<Wrapping<i64>> for Wrapping<i64>
[src]
impl BitAnd<Wrapping<i64>> for Wrapping<i64>
impl BitAnd<Wrapping<i8>> for Wrapping<i8>
[src]
impl BitAnd<Wrapping<i8>> for Wrapping<i8>
impl BitAnd<Wrapping<isize>> for Wrapping<isize>
[src]
impl BitAnd<Wrapping<isize>> for Wrapping<isize>
impl BitAnd<Wrapping<u128>> for Wrapping<u128>
[src]
impl BitAnd<Wrapping<u128>> for Wrapping<u128>
impl BitAnd<Wrapping<u16>> for Wrapping<u16>
[src]
impl BitAnd<Wrapping<u16>> for Wrapping<u16>
impl BitAnd<Wrapping<u32>> for Wrapping<u32>
[src]
impl BitAnd<Wrapping<u32>> for Wrapping<u32>
impl BitAnd<Wrapping<u64>> for Wrapping<u64>
[src]
impl BitAnd<Wrapping<u64>> for Wrapping<u64>
impl BitAnd<Wrapping<u8>> for Wrapping<u8>
[src]
impl BitAnd<Wrapping<u8>> for Wrapping<u8>
impl BitAnd<Wrapping<usize>> for Wrapping<usize>
[src]
impl BitAnd<Wrapping<usize>> for Wrapping<usize>
impl<'a> BitAnd<&'a Wrapping<i128>> for Wrapping<i128>
[src]
impl<'a> BitAnd<&'a Wrapping<i128>> for Wrapping<i128>
type Output = <Wrapping<i128> as BitAnd<Wrapping<i128>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<i16>> for Wrapping<i16>
[src]
impl<'a> BitAnd<&'a Wrapping<i16>> for Wrapping<i16>
type Output = <Wrapping<i16> as BitAnd<Wrapping<i16>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<i32>> for Wrapping<i32>
[src]
impl<'a> BitAnd<&'a Wrapping<i32>> for Wrapping<i32>
type Output = <Wrapping<i32> as BitAnd<Wrapping<i32>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<i64>> for Wrapping<i64>
[src]
impl<'a> BitAnd<&'a Wrapping<i64>> for Wrapping<i64>
type Output = <Wrapping<i64> as BitAnd<Wrapping<i64>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<i8>> for Wrapping<i8>
[src]
impl<'a> BitAnd<&'a Wrapping<i8>> for Wrapping<i8>
type Output = <Wrapping<i8> as BitAnd<Wrapping<i8>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<isize>> for Wrapping<isize>
[src]
impl<'a> BitAnd<&'a Wrapping<isize>> for Wrapping<isize>
type Output = <Wrapping<isize> as BitAnd<Wrapping<isize>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<u128>> for Wrapping<u128>
[src]
impl<'a> BitAnd<&'a Wrapping<u128>> for Wrapping<u128>
type Output = <Wrapping<u128> as BitAnd<Wrapping<u128>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<u16>> for Wrapping<u16>
[src]
impl<'a> BitAnd<&'a Wrapping<u16>> for Wrapping<u16>
type Output = <Wrapping<u16> as BitAnd<Wrapping<u16>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<u32>> for Wrapping<u32>
[src]
impl<'a> BitAnd<&'a Wrapping<u32>> for Wrapping<u32>
type Output = <Wrapping<u32> as BitAnd<Wrapping<u32>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<u64>> for Wrapping<u64>
[src]
impl<'a> BitAnd<&'a Wrapping<u64>> for Wrapping<u64>
type Output = <Wrapping<u64> as BitAnd<Wrapping<u64>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<u8>> for Wrapping<u8>
[src]
impl<'a> BitAnd<&'a Wrapping<u8>> for Wrapping<u8>
type Output = <Wrapping<u8> as BitAnd<Wrapping<u8>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<&'a Wrapping<usize>> for Wrapping<usize>
[src]
impl<'a> BitAnd<&'a Wrapping<usize>> for Wrapping<usize>
type Output = <Wrapping<usize> as BitAnd<Wrapping<usize>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<i128>> for &'a Wrapping<i128>
[src]
impl<'a> BitAnd<Wrapping<i128>> for &'a Wrapping<i128>
type Output = <Wrapping<i128> as BitAnd<Wrapping<i128>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<i16>> for &'a Wrapping<i16>
[src]
impl<'a> BitAnd<Wrapping<i16>> for &'a Wrapping<i16>
type Output = <Wrapping<i16> as BitAnd<Wrapping<i16>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<i32>> for &'a Wrapping<i32>
[src]
impl<'a> BitAnd<Wrapping<i32>> for &'a Wrapping<i32>
type Output = <Wrapping<i32> as BitAnd<Wrapping<i32>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<i64>> for &'a Wrapping<i64>
[src]
impl<'a> BitAnd<Wrapping<i64>> for &'a Wrapping<i64>
type Output = <Wrapping<i64> as BitAnd<Wrapping<i64>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<i8>> for &'a Wrapping<i8>
[src]
impl<'a> BitAnd<Wrapping<i8>> for &'a Wrapping<i8>
type Output = <Wrapping<i8> as BitAnd<Wrapping<i8>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<isize>> for &'a Wrapping<isize>
[src]
impl<'a> BitAnd<Wrapping<isize>> for &'a Wrapping<isize>
type Output = <Wrapping<isize> as BitAnd<Wrapping<isize>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<u128>> for &'a Wrapping<u128>
[src]
impl<'a> BitAnd<Wrapping<u128>> for &'a Wrapping<u128>
type Output = <Wrapping<u128> as BitAnd<Wrapping<u128>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<u16>> for &'a Wrapping<u16>
[src]
impl<'a> BitAnd<Wrapping<u16>> for &'a Wrapping<u16>
type Output = <Wrapping<u16> as BitAnd<Wrapping<u16>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<u32>> for &'a Wrapping<u32>
[src]
impl<'a> BitAnd<Wrapping<u32>> for &'a Wrapping<u32>
type Output = <Wrapping<u32> as BitAnd<Wrapping<u32>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<u64>> for &'a Wrapping<u64>
[src]
impl<'a> BitAnd<Wrapping<u64>> for &'a Wrapping<u64>
type Output = <Wrapping<u64> as BitAnd<Wrapping<u64>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<u8>> for &'a Wrapping<u8>
[src]
impl<'a> BitAnd<Wrapping<u8>> for &'a Wrapping<u8>
type Output = <Wrapping<u8> as BitAnd<Wrapping<u8>>>::Output
fn bitand( | [src] |
impl<'a> BitAnd<Wrapping<usize>> for &'a Wrapping<usize>
[src]
impl<'a> BitAnd<Wrapping<usize>> for &'a Wrapping<usize>
type Output = <Wrapping<usize> as BitAnd<Wrapping<usize>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<i128>> for &'b Wrapping<i128>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<i128>> for &'b Wrapping<i128>
type Output = <Wrapping<i128> as BitAnd<Wrapping<i128>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<i16>> for &'b Wrapping<i16>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<i16>> for &'b Wrapping<i16>
type Output = <Wrapping<i16> as BitAnd<Wrapping<i16>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<i32>> for &'b Wrapping<i32>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<i32>> for &'b Wrapping<i32>
type Output = <Wrapping<i32> as BitAnd<Wrapping<i32>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<i64>> for &'b Wrapping<i64>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<i64>> for &'b Wrapping<i64>
type Output = <Wrapping<i64> as BitAnd<Wrapping<i64>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<i8>> for &'b Wrapping<i8>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<i8>> for &'b Wrapping<i8>
type Output = <Wrapping<i8> as BitAnd<Wrapping<i8>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<isize>> for &'b Wrapping<isize>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<isize>> for &'b Wrapping<isize>
type Output = <Wrapping<isize> as BitAnd<Wrapping<isize>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<u128>> for &'b Wrapping<u128>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<u128>> for &'b Wrapping<u128>
type Output = <Wrapping<u128> as BitAnd<Wrapping<u128>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<u16>> for &'b Wrapping<u16>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<u16>> for &'b Wrapping<u16>
type Output = <Wrapping<u16> as BitAnd<Wrapping<u16>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<u32>> for &'b Wrapping<u32>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<u32>> for &'b Wrapping<u32>
type Output = <Wrapping<u32> as BitAnd<Wrapping<u32>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<u64>> for &'b Wrapping<u64>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<u64>> for &'b Wrapping<u64>
type Output = <Wrapping<u64> as BitAnd<Wrapping<u64>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<u8>> for &'b Wrapping<u8>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<u8>> for &'b Wrapping<u8>
type Output = <Wrapping<u8> as BitAnd<Wrapping<u8>>>::Output
fn bitand( | [src] |
impl<'a, 'b> BitAnd<&'a Wrapping<usize>> for &'b Wrapping<usize>
[src]
impl<'a, 'b> BitAnd<&'a Wrapping<usize>> for &'b Wrapping<usize>
type Output = <Wrapping<usize> as BitAnd<Wrapping<usize>>>::Output
fn bitand( | [src] |
impl<'a, 'b, T> BitAnd<&'b BTreeSet<T>> for &'a BTreeSet<T> where
T: Ord + Clone,
[src]
impl<'a, 'b, T> BitAnd<&'b BTreeSet<T>> for &'a BTreeSet<T> where
T: Ord + Clone,
type Output = BTreeSet<T>
fn bitand(self, rhs: &BTreeSet<T>) -> BTreeSet<T> | [src] |
Returns the intersection of self
and rhs
as a new BTreeSet<T>
.
Examples
use std::collections::BTreeSet; let a: BTreeSet<_> = vec![1, 2, 3].into_iter().collect(); let b: BTreeSet<_> = vec![2, 3, 4].into_iter().collect(); let result = &a & &b; let result_vec: Vec<_> = result.into_iter().collect(); assert_eq!(result_vec, [2, 3]);
impl<'a, 'b, T, S> BitAnd<&'b HashSet<T, S>> for &'a HashSet<T, S> where
S: BuildHasher + Default,
T: Eq + Hash + Clone,
[src]
impl<'a, 'b, T, S> BitAnd<&'b HashSet<T, S>> for &'a HashSet<T, S> where
S: BuildHasher + Default,
T: Eq + Hash + Clone,
type Output = HashSet<T, S>
fn bitand(self, rhs: &HashSet<T, S>) -> HashSet<T, S> | [src] |
Returns the intersection of self
and rhs
as a new HashSet<T, S>
.
Examples
use std::collections::HashSet; let a: HashSet<_> = vec![1, 2, 3].into_iter().collect(); let b: HashSet<_> = vec![2, 3, 4].into_iter().collect(); let set = &a & &b; let mut i = 0; let expected = [2, 3]; for x in &set { assert!(expected.contains(x)); i += 1; } assert_eq!(i, expected.len());