deno_ops

proc_macro for generating highly optimized V8 functions from Deno ops.

```rust // Declare an op.

[op(fast)]

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

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

Performance

The macro can optimize away code, short circuit fast paths and generate a Fast API impl.

Cases where code is optimized away:

Fast calls

The macro will infer and try to auto generate V8 fast API call trait impl for sync ops with:

The #[op(fast)] attribute should be used to enforce fast call generation at compile time.

Trait gen for async ops & a ZeroCopyBuf equivalent type is planned and will be added soon.