1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00
denoland-deno/ops
denobot e4a5f9952f
chore: forward v1.24.3 release commit to main (#15462)
Co-authored-by: David Sherret <dsherret@gmail.com>
2022-08-11 16:47:03 -04:00
..
Cargo.toml chore: forward v1.24.3 release commit to main (#15462) 2022-08-11 16:47:03 -04:00
lib.rs refactor(core): unwrap sync ops in rust (#15449) 2022-08-11 11:57:20 +02:00
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();