deno_ops

proc_macro for generating highly optimized V8 functions from Deno ops.

```rust // Declare an op.

[op]

pub fn opadd(: &mut OpState, a: i32, b: i32) -> Result { Ok(a + b) }

// Register with an extension. Extension::builder() .ops(vec![op_add::decl()]) .build(); ```