bytecode 0.3.0

This library provides the ability to read bytecode.
Documentation
//! 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;