Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
tests/ | 12-May-2024 | - | 23 | 15 | ||
Cargo.toml | D | 12-May-2024 | 302 | 12 | 10 | |
LICENSE | D | 12-May-2024 | 1 KiB | 26 | 22 | |
README.md | D | 12-May-2024 | 374 | 8 | 5 | |
lib.rs | D | 12-May-2024 | 3.8 KiB | 162 | 55 |
README.md
1A macro to evaluate, as a boolean, whether an expression matches a pattern. 2 3For users who build using only Rust 1.42 and newer, consider using [`std::matches`], which 4is included in the [standard library prelude] and thus is automatically in scope. 5 6[`std::matches`]: core::matches 7[standard library prelude]: https://doc.rust-lang.org/stable/reference/names/preludes.html 8