1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/ops
Aapo Alasuutari 6fff813029
cleanup(ops): shorter codegen'd infallible sync ops return (#14587)
Co-authored-by: Aaron O'Mullan <aaron.omullan@gmail.com>
2022-05-12 21:51:57 +02:00
..
Cargo.toml 1.21.3 (#14584) 2022-05-12 18:43:00 +02:00
lib.rs cleanup(ops): shorter codegen'd infallible sync ops return (#14587) 2022-05-12 21:51:57 +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();