Files
agnostic_orderbook
ahash
aho_corasick
arrayref
arrayvec
atty
base64
bincode
blake3
block_buffer
block_padding
borsh
borsh_derive
borsh_derive_internal
borsh_schema_derive_internal
bs58
bv
bytemuck
byteorder
cfg_if
constant_time_eq
cpufeatures
crunchy
crypto_mac
curve25519_dalek
derivative
dex_v3
digest
either
enumflags2
enumflags2_derive
env_logger
generic_array
getrandom
hashbrown
hex
hmac
hmac_drbg
humantime
itertools
keccak
lazy_static
libc
libm
libsecp256k1
libsecp256k1_core
log
memchr
memmap2
num_derive
num_enum
num_enum_derive
num_traits
opaque_debug
ppv_lite86
proc_macro2
quote
rand
rand_chacha
rand_core
rand_pcg
regex
regex_syntax
rustversion
serde
serde_bytes
serde_derive
sha2
sha3
solana_frozen_abi
solana_frozen_abi_macro
solana_logger
solana_program
solana_sdk_macro
spin
spl_token
subtle
syn
synstructure
termcolor
thiserror
thiserror_impl
typenum
unicode_xid
zeroize
zeroize_derive
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
use BlockType;
use super::{Bits, BitsMut};

/// Extension trait for mutable operations on bit slices.
pub trait BitsMutExt: BitsMut {
    /// Assigns the bits of `other` to `self`.
    ///
    /// # Panics
    ///
    /// If `self.bit_len() != other.bit_len()`.
    fn bit_assign<T: Bits<Block = Self::Block>>(&mut self, other: T) {
        assert_eq!( self.bit_len(), other.bit_len(),
                    "BitsMutExt::bit_assign: arguments have different lengths" );

        let bit_len     = self.bit_len();
        let full_blocks = Self::Block::div_nbits(bit_len);
        let extra_bits  = Self::Block::mod_nbits(bit_len);

        for i in 0 .. full_blocks {
            let block = other.get_raw_block(i);
            self.set_block(i, block);
        }

        if extra_bits > 0 {
            let block = other.get_raw_block(full_blocks);
            self.set_bits(bit_len - extra_bits as u64, extra_bits, block);
        }
    }

    /// Assigns the bit-wise *and* of `self` and `other` to `self`.
    ///
    /// # Panics
    ///
    /// If `self.bit_len() != other.bit_len()`.
    fn bit_and_assign<T: Bits<Block = Self::Block>>(&mut self, other: T) {
        self.bit_zip_assign(other, |b1, b2| b1 & b2);
    }

    /// Assigns the bit-wise *or* of `self` and `other` to `self`.
    ///
    /// # Panics
    ///
    /// If `self.bit_len() != other.bit_len()`.
    fn bit_or_assign<T: Bits<Block = Self::Block>>(&mut self, other: T) {
        self.bit_zip_assign(other, |b1, b2| b1 | b2);
    }

    /// Assigns the bit-wise *xor* of `self` and `other` to `self`.
    ///
    /// # Panics
    ///
    /// If `self.bit_len() != other.bit_len()`.
    fn bit_xor_assign<T: Bits<Block = Self::Block>>(&mut self, other: T) {
        self.bit_zip_assign(other, |b1, b2| b1 ^ b2);
    }

    /// Performs an op-assignment from `other` to `self`.
    ///
    /// In particular, the given function is used to combine each
    /// block of `self` with a block of `other`, assigning the result
    /// back to `self`.
    ///
    /// # Panics
    ///
    /// If `self.bit_len() != other.bit_len()`.
    fn bit_zip_assign<T, F>(&mut self, other: T, mut fun: F)
        where T: Bits<Block = Self::Block>,
              F: FnMut(Self::Block, Self::Block) -> Self::Block {

        assert_eq!( self.bit_len(), other.bit_len(),
                    "BitsMutExt::bit_zip_assign: arguments have different lengths" );

        let bit_len     = self.bit_len();
        let full_blocks = Self::Block::div_nbits(bit_len);
        let extra_bits  = Self::Block::mod_nbits(bit_len);

        for i in 0 .. full_blocks {
            let self_block = self.get_raw_block(i);
            let other_block = other.get_raw_block(i);
            let combined_block = fun(self_block, other_block);
            self.set_block(i, combined_block);
        }

        if extra_bits > 0 {
            let self_block = self.get_block(full_blocks);
            let other_block = other.get_block(full_blocks);
            let combined_block = fun(self_block, other_block);
            self.set_bits(bit_len - extra_bits as u64, extra_bits, combined_block);
        }
    }
}

impl<T: BitsMut> BitsMutExt for T {}

#[cfg(test)]
mod test {
    use {BitVec, BitSliceable, BitSliceableMut};
    use super::*;

    #[test]
    fn bit_and_assign() {
        let mut bv1: BitVec = bit_vec![false, false, true, true];
        let     bv2: BitVec = bit_vec![false, true, true, false];

        bv1.bit_and_assign(&bv2);
        assert_eq!( bv1, bit_vec![false, false, true, false] );
    }

    #[test]
    #[should_panic]
    fn bit_and_assign_bad_sizes() {
        let mut bv1: BitVec = bit_vec![false, false, true, true, true];
        let     bv2: BitVec = bit_vec![false, true, true, false];

        bv1.bit_and_assign(&bv2);
    }

    #[test]
    fn bit_xor_assign_slice() {
        let mut v1 = vec![0b00_0011_11u8];
        let     v2 = [0b0_1010_101u8];

        v1.bit_slice_mut(2..6)
            .bit_xor_assign(v2.bit_slice(3..7));

        assert_eq!(v1, vec![0b00100111])
    }
}