aboutsummaryrefslogtreecommitdiff
path: root/vendor/bit_field/README.md
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
committerValentin Popov <valentin@popov.link>2024-07-19 15:37:58 +0300
commita990de90fe41456a23e58bd087d2f107d321f3a1 (patch)
tree15afc392522a9e85dc3332235e311b7d39352ea9 /vendor/bit_field/README.md
parent3d48cd3f81164bbfc1a755dc1d4a9a02f98c8ddd (diff)
downloadfparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.tar.xz
fparkan-a990de90fe41456a23e58bd087d2f107d321f3a1.zip
Deleted vendor folder
Diffstat (limited to 'vendor/bit_field/README.md')
-rw-r--r--vendor/bit_field/README.md31
1 files changed, 0 insertions, 31 deletions
diff --git a/vendor/bit_field/README.md b/vendor/bit_field/README.md
deleted file mode 100644
index ef47b9e..0000000
--- a/vendor/bit_field/README.md
+++ /dev/null
@@ -1,31 +0,0 @@
-# bit_field
-
-A simple crate which provides the `BitField` trait, which provides methods for operating on individual bits and ranges
-of bits on Rust's integral types.
-
-## Documentation
-Documentation is available on [docs.rs](https://docs.rs/bit_field)
-
-## Usage
-```TOML
-[dependencies]
-bit_field = "0.10.1"
-```
-
-## Example
-```rust
-extern crate bit_field;
-use bit_field::BitField;
-
-let mut x: u8 = 0;
-
-x.set_bit(7, true);
-assert_eq!(x, 0b1000_0000);
-
-x.set_bits(0..4, 0b1001);
-assert_eq!(x, 0b1000_1001);
-
-```
-
-## License
-This crate is dual-licensed under MIT or the Apache License (Version 2.0). See LICENSE-APACHE and LICENSE-MIT for details.