Crate deno_ops

source ·
Expand description

§deno_ops

proc_macro for generating highly optimized V8 functions from Rust functions.

use deno_core::{op2, extension};

// Declare an op.
#[op2(fast)]
pub fn op_add(a: i32, b: i32) -> i32 {
  a + b
}

// Register with an extension.
extension!(
  math,
  ops = [op_add]
)

Attribute Macros§

  • A macro designed to provide an extremely fast V8->Rust interface layer.