procuse [[https://crates.io/crates/procuse][[[https://img.shields.io/crates/v/rustygrammar.svg]]]] [[https://docs.rs/procuse][[[https://docs.rs/rustygrammar/badge.svg]]]] [[https://blog.rust-lang.org/2020/05/07/Rust.1.43.1.html][[[https://img.shields.io/badge/procuse-rustc1.46.0+-lightgray.svg]]]] :PROPERTIES: :CUSTOMID: procuse-latest-versioncrates.io-apidocumentation-procuse-rustc-1.43.1rust-1.43.1 :END:
=rusty_grammar= is a library that makes use of a modified CYK algorithm to define grammars and understand language.
** COMMENT Use case :PROPERTIES: :CUSTOM_ID: use-case :END:
struct G {}
impl<'grammar> Grammar<'grammar> for G {
fn convert(&self) -> Vec
struct WB {}
impl WordBank for WB { fn lookup(&self, word: &str) -> &str { match word { "examine" => "verb", "sword" => "noun", "rusty" => "adjective", _ => "dne" } } }
fn main() {
let g = G{};
let wb = WB{};
let input = "examine rusty sword";
let cyk: CYK
That's more code up front, but now the mod and use process is automatic. Add as many Rust files to =util= as you desire; the =useglob= method will pick up and import all of them.\ To see an example using this directory structure, see [[https://github.com/Shizcow/procuse/tree/master/examples/globbing][globbing]].