We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08e2a85 commit 99485e7Copy full SHA for 99485e7
1 file changed
src/block/default.rs
@@ -11,16 +11,6 @@ impl Block {
11
pub const ALL: Self = Block(!0);
12
pub const BITS: usize = core::mem::size_of::<Self>() * 8;
13
14
- #[inline]
15
- pub fn into_usize_array(self) -> [usize; Self::USIZE_COUNT] {
16
- [self.0]
17
- }
18
-
19
20
- pub const fn from_usize_array(array: [usize; Self::USIZE_COUNT]) -> Self {
21
- Self(array[0])
22
23
24
#[inline]
25
pub const fn is_empty(self) -> bool {
26
self.0 == Self::NONE.0
0 commit comments