bmatcher_core/
lib.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#![cfg_attr(not(test), no_std)]
extern crate alloc;

pub mod compiler;

mod atom;
pub use atom::{Atom, JumpType, ReadWidth};

mod target;
pub use target::MatchTarget;

mod error;
pub use error::PositionedError;

mod matcher;
pub use matcher::BinaryMatcher;

mod pattern;
pub use pattern::{BinaryPattern, BorrowedBinaryPattern, OwnedBinaryPattern};