deno/ops
2022-07-01 22:59:24 +05:30
..
Cargo.toml chore: forward 1.23.2 to main (#15027) 2022-06-30 18:01:08 -04:00
lib.rs perf(ops): fast path for SMI return values (#15033) 2022-07-01 22:59:24 +05:30
README.md

deno_ops

proc_macro for generating highly optimized V8 functions from Deno ops.

// Declare an op.
#[op]
pub fn op_add(_: &mut OpState, a: i32, b: i32) -> Result<i32, AnyError> {
  Ok(a + b)
}

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