- Learn WebAssembly
- Mike Rourke
- 67字
- 2021-08-13 15:38:54
WebAssembly.Instance
The WebAssembly.Instance object is the instantiated WebAssembly module, which means you can call exported WebAssembly functions from it. Calling instantiate() or instantiateStreaming() returns a Promise that resolves with an object containing an instance. You call WebAssembly functions by referencing the name of the function on the instance's export property. For example, if a module contained an exported function named sayHello(), you'd call the function using instance.exports.sayHello().
推薦閱讀
- Beginning C++ Game Programming
- 劍指JVM:虛擬機實踐與性能調優
- Mastering Unity Shaders and Effects
- 重學Java設計模式
- Python機器學習基礎教程
- 微信小程序項目開發實戰
- Visual C++開發入行真功夫
- Web性能實戰
- FPGA嵌入式項目開發實戰
- C++ Application Development with Code:Blocks
- Zabbix Performance Tuning
- Android系統下Java編程詳解
- Improving your Penetration Testing Skills
- GO語言編程從入門到實踐
- Kotlin入門與實戰