deno/ops
Divy Srivastava 7c2722201e
chore(ops): hide implementation details from rustdoc (#14038)
Co-authored-by: Aaron O'Mullan <aaron.omullan@gmail.com>
2022-03-19 22:13:53 +01:00
..
Cargo.toml v1.20.1 2022-03-16 21:40:31 -04:00
lib.rs chore(ops): hide implementation details from rustdoc (#14038) 2022-03-19 22:13:53 +01: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();