deno/ops
2022-04-14 15:50:48 -04:00
..
Cargo.toml chore: forward v1.20.6 release commit to main (#14288) 2022-04-14 15:50:48 -04:00
lib.rs refactor(core): OpCtx (#14228) 2022-04-08 10:32:48 +02:00
README.md feat(core): codegen ops (#13861) 2022-03-14 18:44:15 +01:00

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();