1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-18 03:44:05 -05:00
denoland-deno/ops
2022-06-02 17:58:19 +05:30
..
Cargo.toml 1.22.1 2022-05-27 17:36:43 +10:00
lib.rs chore(ops): fix typo in lib.rs (#14777) 2022-06-02 17:58:19 +05:30
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();