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
//! This library provides the ability to read bytecode.
//!
//! # Usage
//!
//! ## Basic
//!
//! ```
//! use bytecode::ByteCode;
//!
//! let mut bytes = ByteCode::new(&[0, 1, 2, 3, 4, 5, 6, 7]);
//!
//! bytes += 3;
//!
//! let _first = bytes[0];
//! let _second = bytes[1];
//!
//! let _subslice = &bytes[2..5];
//! ```
//!
//! ## Utility methods
//!
//! ```
//! use bytecode::ByteCode;
//!
//! let mut bytes = ByteCode::new(&[0, 1, 2, 3, 4, 5, 6, 7]);
//!
//! match bytes.peek(3) {
//!     // omitted
//!     _ => {}
//! }
//!
//! if bytes.starts_with("foo".as_bytes()) {
//!     // omitted
//! }
//!
//! bytes.skip(2);
//!
//! let _subslice = bytes.take(4);
//! ```
//!
//! ```
//! use bytecode::ByteCode;
//!
//! let mut bytes = ByteCode::new(&[0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0x66, 0x6f, 0x6f]);
//!
//! let _u8 = bytes.take_into_u8();   //  u8::MAX
//! let _u16 = bytes.take_into_u16(); // u16::MAX
//! let _u32 = bytes.take_into_u32(); // u32::MAX
//!
//! let _string = bytes.take_into_string(3); // "foo".to_owned()
//! ```

mod core;
mod util;

pub use crate::core::ByteCode;