1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00
denoland-deno/ops
Colin Ihrig 088bc52db0
Forward 1.24.1 to main (#15333) (#15336)
1.24.1 (#15333)

Co-authored-by: cjihrig <cjihrig@users.noreply.github.com>
2022-07-29 08:44:46 -04:00
..
Cargo.toml Forward 1.24.1 to main (#15333) (#15336) 2022-07-29 08:44:46 -04:00
lib.rs Revert "feat(ops): V8 Fast Calls (#15122)" (#15276) 2022-07-22 19:06:32 +05:30
README.md Revert "feat(ops): V8 Fast Calls (#15122)" (#15276) 2022-07-22 19:06:32 +05:30

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