- Hands-On Data Structures and Algorithms with Rust
- Claus Matzinger
- 159字
- 2021-07-02 14:11:47
Wasm
Wasm, which WebAssembly is now commonly called, is a binary format meant to complement JavaScript that Rust can be compiled to. The format is designed to run as a stack machine inside several sandboxed execution environments (such as web browsers, or the Node.js runtime) for performance-critical applications (https://blog.x5ff.xyz/blog/azure-functions-wasm-rust/). While this is—as of this writing—in its early stages, Rust and the Wasm target have been used in real-time frontend settings (such as browser games), and in 2018 there was a dedicated working group seeking to improve this integration.
Similar to other targets, such as ARM, the Wasm target is an LLVM (the compiler technology Rust is built on) backend so it has to be installed using rustup target add wasm32-unknown-unknown. Furthermore, it isn't necessary to declare the binary layout (the "C" in extern "C") and a different bindgen tool does the rest: wasm-bindgen, available at https://github.com/rustwasm/wasm-bindgen. We highly recommend reading the documentation for more information.
- Spark大數據分析實戰
- SQL Server 2008數據庫應用技術(第二版)
- WS-BPEL 2.0 Beginner's Guide
- 數亦有道:Python數據科學指南
- AI時代的數據價值創造:從數據底座到大模型應用落地
- 科研統計思維與方法:SPSS實戰
- Construct 2 Game Development by Example
- Instant Autodesk AutoCAD 2014 Customization with .NET
- AndEngine for Android Game Development Cookbook
- Oracle 11g數據庫管理員指南
- 標簽類目體系:面向業務的數據資產設計方法論
- Learn Selenium
- Learning Construct 2
- Getting Started with Review Board
- Reactive Programming in Kotlin