#wasm-bindgen #javascript #intern #interning

js-intern-core

Internal implementation details for the js-intern crate

2 releases

0.3.1 Jul 5, 2019
0.3.0 Jul 5, 2019

#25 in #intern

Download history 76/week @ 2024-07-28 71/week @ 2024-08-04 134/week @ 2024-08-11 53/week @ 2024-08-18 96/week @ 2024-08-25 77/week @ 2024-09-01 37/week @ 2024-09-08 40/week @ 2024-09-15 146/week @ 2024-09-22 284/week @ 2024-09-29 282/week @ 2024-10-06 153/week @ 2024-10-13 213/week @ 2024-10-20 90/week @ 2024-10-27 45/week @ 2024-11-03 29/week @ 2024-11-10

379 downloads per month
Used in 5 crates (2 directly)

MIT license

7KB
108 lines

A macro for interning JavaScript primitives.

Stores one copy of each distinct JavaScript primitive. For example, js_intern!("string") evaluates to a &JsValue but uses only one heap allocation and a one-time translation from the utf-8 Rust string to the utf-16 JavaScript string the first time the expression is evaluated. Furthermore, values are de-duplicated across the program. So, any time js_intern!(1.0) is used in the program, the same instance of the JavaScript number is used.

Supported types

  • &'static str Eg: js_intern!("str")
  • f64, f32 u8, u16, u32, i8, i16, i32 Eg: js_intern(1.0)
  • bool Eg: js_intern(true)

Related

If you like this, you may like these other crates by Zac Burns (That3Percent)

  • js-object A macro for creating JavaScript objects
  • soa-vec A struct of arrays layout with a Vec of tuple API
  • second-stack A Rust memory allocator for large slices that don't escape the stack.

Dependencies

~0.7–1.3MB
~27K SLoC