From 91b9061bd7c05822ff0849acd9ec5bb0871305f6 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Fri, 7 Jan 2022 18:18:59 +0100 Subject: [PATCH 1/2] Prepare the 1.1.0 release --- .github/workflows/release.yml | 3 +- .github/workflows/test.yml | 6 +- CHANGELOG.md | 31 ++- Cargo.lock | 10 +- docs/api/search.js | 2 +- docs/api/wasmer/wasmer.html | 228 +++++++++++----------- packages/any-api/setup.py | 2 +- packages/any-compiler-cranelift/setup.py | 2 +- packages/any-compiler-llvm/setup.py | 2 +- packages/any-compiler-singlepass/setup.py | 2 +- packages/api/Cargo.toml | 2 +- packages/api/README.md | 4 +- packages/compiler-cranelift/Cargo.toml | 2 +- packages/compiler-llvm/Cargo.toml | 2 +- packages/compiler-singlepass/Cargo.toml | 2 +- packages/engines/Cargo.toml | 2 +- scripts/update-version.sh | 5 +- 17 files changed, 168 insertions(+), 139 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index ce724ec9..926440e8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -225,7 +225,8 @@ jobs: pyenv install --list | grep '^ 3.9' | tail -n 1 | tr -d '[:space:]' > .python-version pyenv install --skip-existing "$(cat .python-version)" - - uses: Swatinem/rust-cache@v1 + # Caching is disabled because it interferes with artifact creation + #- uses: Swatinem/rust-cache@v1 - name: Set up utilities shell: bash diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1136db1b..7b253e16 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -66,7 +66,8 @@ jobs: override: true target: ${{ matrix.target.target-name }} - - uses: Swatinem/rust-cache@v1 + # Caching is disabled because it interferes with artifact creation + #- uses: Swatinem/rust-cache@v1 - name: Set current Python version shell: bash @@ -230,7 +231,8 @@ jobs: pyenv install --list | grep '^ 3.9' | tail -n 1 | tr -d '[:space:]' > .python-version pyenv install --skip-existing "$(cat .python-version)" - - uses: Swatinem/rust-cache@v1 + # Caching is disabled because it interferes with artifact creation + #- uses: Swatinem/rust-cache@v1 - name: Set up just shell: bash diff --git a/CHANGELOG.md b/CHANGELOG.md index ae43f7c2..e68e2706 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,36 @@ All notable changes to this project will be documented in this file. ## Table of Contents -* [1.0.0-beta1](#100-beta1---2020-12-03) +* [1.1.0](#100---2022-01-05) +* [1.0.0](#100---2021-01-18) * [0.4.1](#041---2020-02-02) * [0.3.0](#030---2019-07-16) * [0.2.0](#020---2019-04-16) -## [1.0.0-beta1] - 2020-12-03 +## [1.1.0] - 2022-01-05 + +## Added + +* `Exports` can now be iterated over. +* Host functions can now type-hint results with `None` and tuples. +* Added `int64` and `float32`/`float64` views of memory. +* Imports can now be specified using a `dict` instead of an `ImportObject`. + +## Changed + +* Wasmer has been updated to version 2.1.0. +* Python exceptions can now be thrown across Wasm calls. + +## Fixed + +* Memory view lengths are now returned correctly. +* Unsigned values that fit in `u32`/`u64` no longer cause overflow errors when + passed in/out of Wasm. +* Indexing a memory view with a slice now always returns a list of values. +* Indexing a memory view with a slice can use steps. +* Indexing a memory view with an empty slice no longer returns an error. + +## [1.0.0] - 2021-01-18 ### Changed @@ -381,7 +405,8 @@ All notable changes to this project will be documented in this file. ## [0.2.0] - 2019-04-16 -[1.0.0-beta1]: https://github.com/wasmerio/wasmer-python/compare/0.4.1...1.0.0-beta1 +[1.1.0]: https://github.com/wasmerio/wasmer-python/compare/1.0.0...1.1.0 +[1.0.0]: https://github.com/wasmerio/wasmer-python/compare/0.4.1...1.0.0 [0.4.1]: https://github.com/wasmerio/wasmer-python/compare/0.3.0...0.4.1 [0.3.0]: https://github.com/wasmerio/wasmer-python/compare/0.2.0...0.3.0 [0.2.0]: https://github.com/wasmerio/wasmer-python/compare/0.1.0...0.2.0 diff --git a/Cargo.lock b/Cargo.lock index 2841ee1b..7011998c 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1423,7 +1423,7 @@ checksum = "0237232789cf037d5480773fe568aac745bfe2afbc11a863e97901780a6b47cc" [[package]] name = "wasmer" -version = "1.0.0" +version = "1.1.0" dependencies = [ "cfg-if 1.0.0", "pyo3", @@ -1624,7 +1624,7 @@ dependencies = [ [[package]] name = "wasmer-engines" -version = "1.0.0" +version = "1.1.0" dependencies = [ "enumset", "pyo3", @@ -1722,7 +1722,7 @@ dependencies = [ [[package]] name = "wasmer_compiler_cranelift" -version = "1.0.0" +version = "1.1.0" dependencies = [ "pyo3", "wasmer-compiler-cranelift", @@ -1731,7 +1731,7 @@ dependencies = [ [[package]] name = "wasmer_compiler_llvm" -version = "1.0.0" +version = "1.1.0" dependencies = [ "pyo3", "wasmer-compiler-llvm", @@ -1740,7 +1740,7 @@ dependencies = [ [[package]] name = "wasmer_compiler_singlepass" -version = "1.0.0" +version = "1.1.0" dependencies = [ "pyo3", "wasmer-compiler-singlepass", diff --git a/docs/api/search.js b/docs/api/search.js index dc7b96d4..1a956aa1 100644 --- a/docs/api/search.js +++ b/docs/api/search.js @@ -1,6 +1,6 @@ window.pdocSearch = (function(){ /** elasticlunr - http://weixsong.github.io * Copyright (C) 2017 Oliver Nightingale * Copyright (C) 2017 Wei Song * MIT Licensed */!function(){function e(e){if(null===e||"object"!=typeof e)return e;var t=e.constructor();for(var n in e)e.hasOwnProperty(n)&&(t[n]=e[n]);return t}var t=function(e){var n=new t.Index;return n.pipeline.add(t.trimmer,t.stopWordFilter,t.stemmer),e&&e.call(n,n),n};t.version="0.9.5",lunr=t,t.utils={},t.utils.warn=function(e){return function(t){e.console&&console.warn&&console.warn(t)}}(this),t.utils.toString=function(e){return void 0===e||null===e?"":e.toString()},t.EventEmitter=function(){this.events={}},t.EventEmitter.prototype.addListener=function(){var e=Array.prototype.slice.call(arguments),t=e.pop(),n=e;if("function"!=typeof t)throw new TypeError("last argument must be a function");n.forEach(function(e){this.hasHandler(e)||(this.events[e]=[]),this.events[e].push(t)},this)},t.EventEmitter.prototype.removeListener=function(e,t){if(this.hasHandler(e)){var n=this.events[e].indexOf(t);-1!==n&&(this.events[e].splice(n,1),0==this.events[e].length&&delete this.events[e])}},t.EventEmitter.prototype.emit=function(e){if(this.hasHandler(e)){var t=Array.prototype.slice.call(arguments,1);this.events[e].forEach(function(e){e.apply(void 0,t)},this)}},t.EventEmitter.prototype.hasHandler=function(e){return e in this.events},t.tokenizer=function(e){if(!arguments.length||null===e||void 0===e)return[];if(Array.isArray(e)){var n=e.filter(function(e){return null===e||void 0===e?!1:!0});n=n.map(function(e){return t.utils.toString(e).toLowerCase()});var i=[];return n.forEach(function(e){var n=e.split(t.tokenizer.seperator);i=i.concat(n)},this),i}return e.toString().trim().toLowerCase().split(t.tokenizer.seperator)},t.tokenizer.defaultSeperator=/[\s\-]+/,t.tokenizer.seperator=t.tokenizer.defaultSeperator,t.tokenizer.setSeperator=function(e){null!==e&&void 0!==e&&"object"==typeof e&&(t.tokenizer.seperator=e)},t.tokenizer.resetSeperator=function(){t.tokenizer.seperator=t.tokenizer.defaultSeperator},t.tokenizer.getSeperator=function(){return t.tokenizer.seperator},t.Pipeline=function(){this._queue=[]},t.Pipeline.registeredFunctions={},t.Pipeline.registerFunction=function(e,n){n in t.Pipeline.registeredFunctions&&t.utils.warn("Overwriting existing registered function: "+n),e.label=n,t.Pipeline.registeredFunctions[n]=e},t.Pipeline.getRegisteredFunction=function(e){return e in t.Pipeline.registeredFunctions!=!0?null:t.Pipeline.registeredFunctions[e]},t.Pipeline.warnIfFunctionNotRegistered=function(e){var n=e.label&&e.label in this.registeredFunctions;n||t.utils.warn("Function is not registered with pipeline. This may cause problems when serialising the index.\n",e)},t.Pipeline.load=function(e){var n=new t.Pipeline;return e.forEach(function(e){var i=t.Pipeline.getRegisteredFunction(e);if(!i)throw new Error("Cannot load un-registered function: "+e);n.add(i)}),n},t.Pipeline.prototype.add=function(){var e=Array.prototype.slice.call(arguments);e.forEach(function(e){t.Pipeline.warnIfFunctionNotRegistered(e),this._queue.push(e)},this)},t.Pipeline.prototype.after=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i+1,0,n)},t.Pipeline.prototype.before=function(e,n){t.Pipeline.warnIfFunctionNotRegistered(n);var i=this._queue.indexOf(e);if(-1===i)throw new Error("Cannot find existingFn");this._queue.splice(i,0,n)},t.Pipeline.prototype.remove=function(e){var t=this._queue.indexOf(e);-1!==t&&this._queue.splice(t,1)},t.Pipeline.prototype.run=function(e){for(var t=[],n=e.length,i=this._queue.length,o=0;n>o;o++){for(var r=e[o],s=0;i>s&&(r=this._queue[s](r,o,e),void 0!==r&&null!==r);s++);void 0!==r&&null!==r&&t.push(r)}return t},t.Pipeline.prototype.reset=function(){this._queue=[]},t.Pipeline.prototype.get=function(){return this._queue},t.Pipeline.prototype.toJSON=function(){return this._queue.map(function(e){return t.Pipeline.warnIfFunctionNotRegistered(e),e.label})},t.Index=function(){this._fields=[],this._ref="id",this.pipeline=new t.Pipeline,this.documentStore=new t.DocumentStore,this.index={},this.eventEmitter=new t.EventEmitter,this._idfCache={},this.on("add","remove","update",function(){this._idfCache={}}.bind(this))},t.Index.prototype.on=function(){var e=Array.prototype.slice.call(arguments);return this.eventEmitter.addListener.apply(this.eventEmitter,e)},t.Index.prototype.off=function(e,t){return this.eventEmitter.removeListener(e,t)},t.Index.load=function(e){e.version!==t.version&&t.utils.warn("version mismatch: current "+t.version+" importing "+e.version);var n=new this;n._fields=e.fields,n._ref=e.ref,n.documentStore=t.DocumentStore.load(e.documentStore),n.pipeline=t.Pipeline.load(e.pipeline),n.index={};for(var i in e.index)n.index[i]=t.InvertedIndex.load(e.index[i]);return n},t.Index.prototype.addField=function(e){return this._fields.push(e),this.index[e]=new t.InvertedIndex,this},t.Index.prototype.setRef=function(e){return this._ref=e,this},t.Index.prototype.saveDocument=function(e){return this.documentStore=new t.DocumentStore(e),this},t.Index.prototype.addDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.addDoc(i,e),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));this.documentStore.addFieldLength(i,n,o.length);var r={};o.forEach(function(e){e in r?r[e]+=1:r[e]=1},this);for(var s in r){var u=r[s];u=Math.sqrt(u),this.index[n].addToken(s,{ref:i,tf:u})}},this),n&&this.eventEmitter.emit("add",e,this)}},t.Index.prototype.removeDocByRef=function(e){if(e&&this.documentStore.isDocStored()!==!1&&this.documentStore.hasDoc(e)){var t=this.documentStore.getDoc(e);this.removeDoc(t,!1)}},t.Index.prototype.removeDoc=function(e,n){if(e){var n=void 0===n?!0:n,i=e[this._ref];this.documentStore.hasDoc(i)&&(this.documentStore.removeDoc(i),this._fields.forEach(function(n){var o=this.pipeline.run(t.tokenizer(e[n]));o.forEach(function(e){this.index[n].removeToken(e,i)},this)},this),n&&this.eventEmitter.emit("remove",e,this))}},t.Index.prototype.updateDoc=function(e,t){var t=void 0===t?!0:t;this.removeDocByRef(e[this._ref],!1),this.addDoc(e,!1),t&&this.eventEmitter.emit("update",e,this)},t.Index.prototype.idf=function(e,t){var n="@"+t+"/"+e;if(Object.prototype.hasOwnProperty.call(this._idfCache,n))return this._idfCache[n];var i=this.index[t].getDocFreq(e),o=1+Math.log(this.documentStore.length/(i+1));return this._idfCache[n]=o,o},t.Index.prototype.getFields=function(){return this._fields.slice()},t.Index.prototype.search=function(e,n){if(!e)return[];e="string"==typeof e?{any:e}:JSON.parse(JSON.stringify(e));var i=null;null!=n&&(i=JSON.stringify(n));for(var o=new t.Configuration(i,this.getFields()).get(),r={},s=Object.keys(e),u=0;u0&&t.push(e);for(var i in n)"docs"!==i&&"df"!==i&&this.expandToken(e+i,t,n[i]);return t},t.InvertedIndex.prototype.toJSON=function(){return{root:this.root}},t.Configuration=function(e,n){var e=e||"";if(void 0==n||null==n)throw new Error("fields should not be null");this.config={};var i;try{i=JSON.parse(e),this.buildUserConfig(i,n)}catch(o){t.utils.warn("user configuration parse failed, will use default configuration"),this.buildDefaultConfig(n)}},t.Configuration.prototype.buildDefaultConfig=function(e){this.reset(),e.forEach(function(e){this.config[e]={boost:1,bool:"OR",expand:!1}},this)},t.Configuration.prototype.buildUserConfig=function(e,n){var i="OR",o=!1;if(this.reset(),"bool"in e&&(i=e.bool||i),"expand"in e&&(o=e.expand||o),"fields"in e)for(var r in e.fields)if(n.indexOf(r)>-1){var s=e.fields[r],u=o;void 0!=s.expand&&(u=s.expand),this.config[r]={boost:s.boost||0===s.boost?s.boost:1,bool:s.bool||i,expand:u}}else t.utils.warn("field name in user configuration not found in index instance fields");else this.addAllFields2UserConfig(i,o,n)},t.Configuration.prototype.addAllFields2UserConfig=function(e,t,n){n.forEach(function(n){this.config[n]={boost:1,bool:e,expand:t}},this)},t.Configuration.prototype.get=function(){return this.config},t.Configuration.prototype.reset=function(){this.config={}},lunr.SortedSet=function(){this.length=0,this.elements=[]},lunr.SortedSet.load=function(e){var t=new this;return t.elements=e,t.length=e.length,t},lunr.SortedSet.prototype.add=function(){var e,t;for(e=0;e1;){if(r===e)return o;e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o]}return r===e?o:-1},lunr.SortedSet.prototype.locationFor=function(e){for(var t=0,n=this.elements.length,i=n-t,o=t+Math.floor(i/2),r=this.elements[o];i>1;)e>r&&(t=o),r>e&&(n=o),i=n-t,o=t+Math.floor(i/2),r=this.elements[o];return r>e?o:e>r?o+1:void 0},lunr.SortedSet.prototype.intersect=function(e){for(var t=new lunr.SortedSet,n=0,i=0,o=this.length,r=e.length,s=this.elements,u=e.elements;;){if(n>o-1||i>r-1)break;s[n]!==u[i]?s[n]u[i]&&i++:(t.add(s[n]),n++,i++)}return t},lunr.SortedSet.prototype.clone=function(){var e=new lunr.SortedSet;return e.elements=this.toArray(),e.length=e.elements.length,e},lunr.SortedSet.prototype.union=function(e){var t,n,i;this.length>=e.length?(t=this,n=e):(t=e,n=this),i=t.clone();for(var o=0,r=n.toArray();oWasmer Python API\n\n

\"PyPI \"Wasmer \"Wasmer \"Wasmer

\n\n

A complete and mature WebAssembly runtime for Python based on Wasmer.

\n\n

Features:

\n\n
    \n
  • Easy to use: The wasmer API mimics the standard WebAssembly API,
  • \n
  • Fast: wasmer executes the WebAssembly modules as fast as\npossible, close to native speed,
  • \n
  • Safe: All calls to WebAssembly will be fast, but more\nimportantly, completely safe and sandboxed.
  • \n
\n\n

Example

\n\n

The very basic example is the following:

\n\n
from wasmer import Store, Module, Instance\n\n# Create a store, which holds the engine, the compiler etc.\nstore = Store()\n\n# Let's assume we don't have WebAssembly bytes at hand. We will\n# write WebAssembly manually.\nmodule = Module(\n    store,\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\n\n# Instantiates the module.\ninstance = Instance(module)\n\n# Now, let's execute the `sum` function.\nassert instance.exports.sum(1, 2) == 3\n
\n\n

That's it. Now explore the API! Some pointers for the adventurers:

\n\n
    \n
  • The basic elements are Module and Instance,
  • \n
  • Exports of an instance are represented by the Exports object,
  • \n
  • Maybe your module needs to import Function, Memory, Global\nor Table? Well, there is the Python dict for that!
  • \n
  • It is possible to read and write Memory data with the Python\nbuffer protocol with Buffer.
  • \n
\n\n

Have fun!

\n"}, "wasmer.wasmer": {"fullname": "wasmer.wasmer", "modulename": "wasmer.wasmer", "qualname": "", "type": "module", "doc": "

Wasmer Python API

\n\n

\"PyPI \"Wasmer \"Wasmer \"Wasmer

\n\n

A complete and mature WebAssembly runtime for Python based on Wasmer.

\n\n

Features:

\n\n
    \n
  • Easy to use: The wasmer API mimics the standard WebAssembly API,
  • \n
  • Fast: wasmer executes the WebAssembly modules as fast as\npossible, close to native speed,
  • \n
  • Safe: All calls to WebAssembly will be fast, but more\nimportantly, completely safe and sandboxed.
  • \n
\n\n

Example

\n\n

The very basic example is the following:

\n\n
from wasmer import Store, Module, Instance\n\n# Create a store, which holds the engine, the compiler etc.\nstore = Store()\n\n# Let's assume we don't have WebAssembly bytes at hand. We will\n# write WebAssembly manually.\nmodule = Module(\n    store,\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\n\n# Instantiates the module.\ninstance = Instance(module)\n\n# Now, let's execute the `sum` function.\nassert instance.exports.sum(1, 2) == 3\n
\n\n

That's it. Now explore the API! Some pointers for the adventurers:

\n\n
    \n
  • The basic elements are Module and Instance,
  • \n
  • Exports of an instance are represented by the Exports object,
  • \n
  • Maybe your module needs to import Function, Memory, Global\nor Table? Well, there is the Python dict for that!
  • \n
  • It is possible to read and write Memory data with the Python\nbuffer protocol with Buffer.
  • \n
\n\n

Have fun!

\n"}, "wasmer.wasmer.wat2wasm": {"fullname": "wasmer.wasmer.wat2wasm", "modulename": "wasmer.wasmer", "qualname": "wat2wasm", "type": "function", "doc": "

Translate WebAssembly text source to WebAssembly binary format.

\n\n

Example

\n\n
from wasmer import wat2wasm\n\nassert wat2wasm('(module)') == b'\\x00asm\\x01\\x00\\x00\\x00'\n
\n", "parameters": ["wat"], "funcdef": "def"}, "wasmer.wasmer.wasm2wat": {"fullname": "wasmer.wasmer.wasm2wat", "modulename": "wasmer.wasmer", "qualname": "wasm2wat", "type": "function", "doc": "

Disassemble WebAssembly binary to WebAssembly text format.

\n\n

Example

\n\n
from wasmer import wasm2wat\n\nassert wasm2wat(b'\\x00asm\\x01\\x00\\x00\\x00') == '(module)'\n
\n", "parameters": ["bytes"], "funcdef": "def"}, "wasmer.wasmer.Exports": {"fullname": "wasmer.wasmer.Exports", "modulename": "wasmer.wasmer", "qualname": "Exports", "type": "class", "doc": "

Represents all the exports of an instance. It is built by\nInstance.exports.

\n\n

Exports can be of kind Function, Global, Table, or Memory.

\n\n

The Exports class implement the Iterator\nProtocol. Please see\nthe ExportsIterator class.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Exports, Function, Global, Table, Memory\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (func (export "func") (param i32 i64))\n      (global (export "glob") i32 (i32.const 7))\n      (table (export "tab") 0 funcref)\n      (memory (export "mem") 1))\n    """\n)\ninstance = Instance(module)\nexports = instance.exports\n\nassert isinstance(exports, Exports)\nassert isinstance(exports.func, Function)\nassert isinstance(exports.glob, Global)\nassert isinstance(exports.tab, Table)\nassert isinstance(exports.mem, Memory)\n
\n"}, "wasmer.wasmer.Exports.__init__": {"fullname": "wasmer.wasmer.Exports.__init__", "modulename": "wasmer.wasmer", "qualname": "Exports.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ExportsIterator": {"fullname": "wasmer.wasmer.ExportsIterator", "modulename": "wasmer.wasmer", "qualname": "ExportsIterator", "type": "class", "doc": "

Iterator over all the exports of an Instance.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Exports, Function, Global, Table, Memory\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (func (export "func") (param i32 i64))\n      (global (export "glob") i32 (i32.const 7))\n      (table (export "tab") 0 funcref)\n      (memory (export "mem") 1))\n    """\n)\ninstance = Instance(module)\n\nassert [name for (name, export) in instance.exports] == ["func", "glob", "tab", "mem"]\n
\n"}, "wasmer.wasmer.ExportsIterator.__init__": {"fullname": "wasmer.wasmer.ExportsIterator.__init__", "modulename": "wasmer.wasmer", "qualname": "ExportsIterator.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Function": {"fullname": "wasmer.wasmer.Function", "modulename": "wasmer.wasmer", "qualname": "Function", "type": "class", "doc": "

Represents a WebAssembly function instance.

\n\n

A function instance is the runtime representation of a\nfunction. It effectively is a closure of the original function\n(defined in either the host or the WebAssembly module) over the\nruntime Instance of its originating Module.

\n\n

The module instance is used to resolve references to other\ndefinitions during executing of the function.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#function-instances

\n\n

Note that the function can be invoked/called by the host only when\nit is an exported function (see Exports to see an example).

\n\n

Example

\n\n

To build a Function, we need its type. It can either be inferred\nfrom Python thanks to annotations, or be given with a\nFunctionType value.

\n\n

With Python annotations

\n\n

First, let's see with Python annotations:

\n\n
from wasmer import Store, Function, Type\n\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nstore = Store()\nfunction = Function(store, sum)\nfunction_type = function.type\n\nassert function_type.params == [Type.I32, Type.I32]\nassert function_type.results == [Type.I32]\n
\n\n

Here is the mapping table:

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n
AnnotationsWebAssembly type
int, 'i32', 'I32'Type.I32
'i64', 'I64'Type.I64
float, 'f32', 'F32'Type.F32
'f64', 'F64'Type.F64
Nonenone (only in return position)
\n\n

It is possible for a host function to return a tuple of the types above (except None), like:

\n\n
from wasmer import Store, Function, Type\n\ndef swap(x: 'i32', y: 'i64') -> ('i64', 'i32'):\n    return (y, x)\n\nstore = Store()\nfunction = Function(store, swap)\nfunction_type = function.type\n\nassert function_type.params == [Type.I32, Type.I64]\nassert function_type.results == [Type.I64, Type.I32]\n
\n\n

With FunctionType

\n\n

Second, the same code but without annotations and a FunctionType:

\n\n
from wasmer import Store, Function, FunctionType, Type\n\ndef sum(x, y):\n    return x + y\n\nstore = Store()\nfunction = Function(store, sum, FunctionType([Type.I32, Type.I32], [Type.I32]))\n
\n"}, "wasmer.wasmer.Function.__init__": {"fullname": "wasmer.wasmer.Function.__init__", "modulename": "wasmer.wasmer", "qualname": "Function.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Function.type": {"fullname": "wasmer.wasmer.Function.type", "modulename": "wasmer.wasmer", "qualname": "Function.type", "type": "variable", "doc": "

Returns the type of the function as a FunctionType object.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, FunctionType, Type\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\ninstance = Instance(module)\nsum = instance.exports.sum\nsum_type = sum.type\n\nassert isinstance(sum_type, FunctionType)\nassert sum_type.params == [Type.I32, Type.I32]\nassert sum_type.results == [Type.I32]\n
\n"}, "wasmer.wasmer.Global": {"fullname": "wasmer.wasmer.Global", "modulename": "wasmer.wasmer", "qualname": "Global", "type": "class", "doc": "

Represents a WebAssembly global instance.

\n\n

A global instance is the runtime representation of a global\nvariable. It consists of an individual value and a flag indicating\nwhether it is mutable.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#global-instances

\n\n

Example

\n\n
from wasmer import Store, Global, Value, Type\n\nstore = Store()\n\n# Let's create an immutable global.\nglobal_ = Global(store, Value.i32(42))\nglobal_type = global_.type\n\nassert global_.value == 42\nassert global_type.type == Type.I32\nassert global_type.mutable == False\n\n# Let's create an mutable global.\nglobal_ = Global(store, Value.i32(42), mutable=True)\n\nassert global_.mutable == True\n
\n"}, "wasmer.wasmer.Global.__init__": {"fullname": "wasmer.wasmer.Global.__init__", "modulename": "wasmer.wasmer", "qualname": "Global.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Global.type": {"fullname": "wasmer.wasmer.Global.type", "modulename": "wasmer.wasmer", "qualname": "Global.type", "type": "variable", "doc": "

Returns the type of the global as a value of kind GlobalType.

\n\n

Example

\n\n
from wasmer import Store, Global, Value, Type\n\nstore = Store()\n\nglobal_ = Global(store, Value.i32(42), mutable=False)\nglobal_type = global_.type\n\nassert global_type.type == Type.I32\nassert global_type.mutable == False\n
\n"}, "wasmer.wasmer.Global.mutable": {"fullname": "wasmer.wasmer.Global.mutable", "modulename": "wasmer.wasmer", "qualname": "Global.mutable", "type": "variable", "doc": "

Checks whether the global is mutable.

\n\n

Example

\n\n
from wasmer import Store, Global, Value\n\nstore = Store()\nglobal_ = Global(store, Value.i32(42), mutable=True)\n\nassert global_.mutable == True\n
\n"}, "wasmer.wasmer.Global.value": {"fullname": "wasmer.wasmer.Global.value", "modulename": "wasmer.wasmer", "qualname": "Global.value", "type": "variable", "doc": "

Get or set a custom value to the global instance.

\n\n

Example

\n\n
from wasmer import Store, Global, Value\n\nstore = Store()\nglobal_ = Global(store, Value.i32(42), mutable=True)\n\nassert global_.value == 42\n\nglobal_.value = 153\n\nassert global_.value == 153\n
\n"}, "wasmer.wasmer.Memory": {"fullname": "wasmer.wasmer.Memory", "modulename": "wasmer.wasmer", "qualname": "Memory", "type": "class", "doc": "

A WebAssembly memory instance.

\n\n

A memory instance is the runtime representation of a linear\nmemory. It consists of a vector of bytes and an optional maximum\nsize.

\n\n

The length of the vector always is a multiple of the WebAssembly\npage size, which is defined to be the constant 65536 \u2013 abbreviated\n64Ki. Like in a memory type, the maximum size in a memory\ninstance is given in units of this page size.

\n\n

A memory created by the host or in WebAssembly code will be accessible and\nmutable from both host and WebAssembly.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#memory-instances

\n\n

Example

\n\n

Creates a Memory from scratch:

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.size == 3\n
\n\n

Gets a memory from the exports of an instance:

\n\n
from wasmer import Store, Module, Instance, Memory\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\n\nmemory = instance.exports.memory\n\nassert isinstance(memory, Memory)\n
\n"}, "wasmer.wasmer.Memory.__init__": {"fullname": "wasmer.wasmer.Memory.__init__", "modulename": "wasmer.wasmer", "qualname": "Memory.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Memory.grow": {"fullname": "wasmer.wasmer.Memory.grow", "modulename": "wasmer.wasmer", "qualname": "Memory.grow", "type": "function", "doc": "

Grow memory by the specified amount of WebAssembly pages.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.size == 3\n\nmemory.grow(2)\n\nassert memory.size == 5\n
\n", "parameters": ["self", "number_of_pages"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint8_view": {"fullname": "wasmer.wasmer.Memory.uint8_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint8_view", "type": "function", "doc": "

Creates a read-and-write view over the memory data where\nelements are of kind uint8. See the Uint8Array view to\nlearn more.

\n\n

Examples

\n\n
from wasmer import Store, Memory, MemoryType, Uint8Array\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert isinstance(memory.uint8_view(offset=42), Uint8Array)\n
\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int8_view": {"fullname": "wasmer.wasmer.Memory.int8_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int8_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int8. See the Int8Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint16_view": {"fullname": "wasmer.wasmer.Memory.uint16_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint16_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind uint16. See the Uint16Array view to learn\nmore, and the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int16_view": {"fullname": "wasmer.wasmer.Memory.int16_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int16_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int16. See the Int16Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint32_view": {"fullname": "wasmer.wasmer.Memory.uint32_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint32_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind uint32. See the Uint32Array view to learn\nmore, and the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int32_view": {"fullname": "wasmer.wasmer.Memory.int32_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int32_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int32. See the Int32Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint64_view": {"fullname": "wasmer.wasmer.Memory.uint64_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint64_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind uint64. See the Uint64Array view to learn\nmore, and the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int64_view": {"fullname": "wasmer.wasmer.Memory.int64_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int64_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int64. See the Int64Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.float32_view": {"fullname": "wasmer.wasmer.Memory.float32_view", "modulename": "wasmer.wasmer", "qualname": "Memory.float32_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind float32. See the Float32Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.float64_view": {"fullname": "wasmer.wasmer.Memory.float64_view", "modulename": "wasmer.wasmer", "qualname": "Memory.float64_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind float64. See the Float64Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.type": {"fullname": "wasmer.wasmer.Memory.type", "modulename": "wasmer.wasmer", "qualname": "Memory.type", "type": "variable", "doc": "

Gets the memory type, of kind MemoryType.

\n\n

Example

\n\n
from wasmer import Store, Memory, Module, Instance\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nmemory = instance.exports.memory\nmemory_type = memory.type\n\nassert memory_type.minimum == 17\nassert memory_type.maximum == None\nassert memory_type.shared == False\n
\n"}, "wasmer.wasmer.Memory.size": {"fullname": "wasmer.wasmer.Memory.size", "modulename": "wasmer.wasmer", "qualname": "Memory.size", "type": "variable", "doc": "

Returns the size (in pages) of the Memory.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.size == 3\n
\n"}, "wasmer.wasmer.Memory.data_size": {"fullname": "wasmer.wasmer.Memory.data_size", "modulename": "wasmer.wasmer", "qualname": "Memory.data_size", "type": "variable", "doc": "

Returns the size (in bytes) of the Memory.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.data_size == 196608\n
\n"}, "wasmer.wasmer.Memory.buffer": {"fullname": "wasmer.wasmer.Memory.buffer", "modulename": "wasmer.wasmer", "qualname": "Memory.buffer", "type": "variable", "doc": "

Creates a Python buffer to read and write the memory data. See\nthe Buffer class to learn more.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType, Buffer\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert isinstance(memory.buffer, Buffer)\n
\n"}, "wasmer.wasmer.Table": {"fullname": "wasmer.wasmer.Table", "modulename": "wasmer.wasmer", "qualname": "Table", "type": "class", "doc": "

A WebAssembly table instance.

\n\n

The Table class is an array-like structure representing a\nWebAssembly table, which stores function references.

\n\n

A table created by the host or in WebAssembly code will be\naccessible and mutable from both host and WebAssembly.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#table-instances

\n"}, "wasmer.wasmer.Table.__init__": {"fullname": "wasmer.wasmer.Table.__init__", "modulename": "wasmer.wasmer", "qualname": "Table.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Table.type": {"fullname": "wasmer.wasmer.Table.type", "modulename": "wasmer.wasmer", "qualname": "Table.type", "type": "variable", "doc": "

Gets the table type, as an object of kind TableType.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Table, Type\n\nmodule = Module(Store(), '(module (table (export "table") 2 funcref))')\ninstance = Instance(module)\ntable = instance.exports.table\ntable_type = table.type\n\nassert table_type.type == Type.FUNC_REF\nassert table_type.minimum == 2\nassert table_type.maximum == None\n
\n"}, "wasmer.wasmer.Table.size": {"fullname": "wasmer.wasmer.Table.size", "modulename": "wasmer.wasmer", "qualname": "Table.size", "type": "variable", "doc": "

Gets the table size (in elements).

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Table\n\nmodule = Module(Store(), '(module (table (export "table") 2 funcref))')\ninstance = Instance(module)\ntable = instance.exports.table\n\nassert table.size == 2\n
\n"}, "wasmer.wasmer.ImportObject": {"fullname": "wasmer.wasmer.ImportObject", "modulename": "wasmer.wasmer", "qualname": "ImportObject", "type": "class", "doc": "

An ImportObject represents all of the import data used when\ninstantiating a WebAssembly module.

\n\n

Important

\n\n

This object is deprecated in favor of dictionaries in Python.\nYou can now type:

\n\n
from wasmer import Store, Function\n\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nstore = Store()\nimport_object = {}\nimport_object["math"] = {\n    "sum": Function(store, sum)\n}\n
\n\n

Example

\n\n

Importing a function, math.sum, and call it through the exported\nadd_one function:

\n\n
from wasmer import Store, Module, Instance, ImportObject, Function\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (import "math" "sum" (func $sum (param i32 i32) (result i32)))\n      (func (export "add_one") (param i32) (result i32)\n        local.get 0\n        i32.const 1\n        call $sum))\n    """\n)\n\nimport_object = ImportObject()\nimport_object.register(\n    "math",\n    {\n        "sum": Function(store, sum)\n    }\n)\n\ninstance = Instance(module, import_object)\n\nassert instance.exports.add_one(1) == 2\n
\n\n

Importing a memory:

\n\n
from wasmer import Store, Module, Instance, Memory, MemoryType, ImportObject\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (import "env" "memory" (memory $memory 1))\n      (func (export "increment")\n        i32.const 0\n        i32.const 0\n        i32.load    ;; load 0\n        i32.const 1\n        i32.add     ;; add 1\n        i32.store   ;; store at 0\n        ))\n    """\n)\n\nmemory = Memory(store, MemoryType(minimum=1))\nview = memory.uint8_view(offset=0)\n\nimport_object = ImportObject()\nimport_object.register(\n    "env",\n    {\n        "memory": memory\n    }\n)\n\ninstance = Instance(module, import_object)\n\nassert view[0] == 0\ninstance.exports.increment()\nassert view[0] == 1\ninstance.exports.increment()\nassert view[0] == 2\n
\n\n

Importing a global:

\n\n
from wasmer import Store, Module, Instance, ImportObject, Global, Value\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (import "env" "global" (global $global (mut i32)))\n      (func (export "read_g") (result i32)\n        global.get $global)\n      (func (export "write_g") (param i32)\n        local.get 0\n        global.set $global))\n    """\n)\n\nglobal_ = Global(store, Value.i32(7), mutable=True)\n\nimport_object = ImportObject()\nimport_object.register(\n    "env",\n    {\n        "global": global_\n    }\n)\n\ninstance = Instance(module, import_object)\n\nassert instance.exports.read_g() == 7\nglobal_.value = 153\nassert instance.exports.read_g() == 153\ninstance.exports.write_g(11)\nassert global_.value == 11\n
\n\n

etc.

\n"}, "wasmer.wasmer.ImportObject.__init__": {"fullname": "wasmer.wasmer.ImportObject.__init__", "modulename": "wasmer.wasmer", "qualname": "ImportObject.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ImportObject.contains_namespace": {"fullname": "wasmer.wasmer.ImportObject.contains_namespace", "modulename": "wasmer.wasmer", "qualname": "ImportObject.contains_namespace", "type": "function", "doc": "

Checks whether the import object contains a specific namespace.

\n\n

Example

\n\n
from wasmer import ImportObject\n\nimport_object = ImportObject()\n\nassert import_object.contains_namespace("foo") == False\n
\n", "parameters": ["self", "namespace_name"], "funcdef": "def"}, "wasmer.wasmer.ImportObject.to_dict": {"fullname": "wasmer.wasmer.ImportObject.to_dict", "modulename": "wasmer.wasmer", "qualname": "ImportObject.to_dict", "type": "function", "doc": "

Gets a Python dictionary from an ImportObject.

\n", "parameters": ["self"], "funcdef": "def"}, "wasmer.wasmer.ImportObject.register": {"fullname": "wasmer.wasmer.ImportObject.register", "modulename": "wasmer.wasmer", "qualname": "ImportObject.register", "type": "function", "doc": "

Registers a set of Function, Memory, Global or Table\nto a particular namespace.

\n\n

Example

\n\n
from wasmer import Store, ImportObject, Function, Memory, MemoryType\n\nstore = Store()\n\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nimport_object = ImportObject()\nimport_object.register(\n    "env",\n    {\n        "sum": Function(store, sum),\n        "memory": Memory(store, MemoryType(minimum=1))\n    }\n)\n
\n", "parameters": ["self", "namespace_name", "namespace"], "funcdef": "def"}, "wasmer.wasmer.Instance": {"fullname": "wasmer.wasmer.Instance", "modulename": "wasmer.wasmer", "qualname": "Instance", "type": "class", "doc": "

A WebAssembly instance is a stateful, executable instance of a\nWebAssembly Module.

\n\n

Instance objects contain all the exported WebAssembly functions,\nmemories, tables and globals that allow interacting with\nWebAssembly.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#module-instances

\n\n

Example

\n\n

Example without an import object. The following creates a module\nwith a sum exported function that sum two integers.

\n\n
from wasmer import Store, Module, Instance\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\ninstance = Instance(module)\n\nassert instance.exports.sum(1, 2) == 3\n
\n\n

Example with an import object. The following creates a module that\n(i) imports a sum function from the math namespace, and (ii)\nexports a add_one function that adds 1 to any given integer (by\nusing the math.sum function).

\n\n
from wasmer import Store, Module, Instance, Function\nfrom collections import defaultdict\n\n# Let's define the `sum` function!\ndef sum(x: int, y: int) -> int:\n    return x + y\n\n# Let's build a store, as usual.\nstore = Store()\n\n# Let's compile the WebAssembly module.\nmodule = Module(\n    store,\n    """\n    (module\n      (import "math" "sum" (func $sum (param i32 i32) (result i32)))\n      (func (export "add_one") (param i32) (result i32)\n        local.get 0\n        i32.const 1\n        call $sum))\n    """\n)\n\n# Now, let's create an import object, and register the `sum`\n# function.\nimport_object = defaultdict(dict)\nimport_object["math"]["sum"] = Function(store, sum)\n\n# Here we go, let's instantiate the module with the import object!\ninstance = Instance(module, import_object)\n\n# Let's test it!\nassert instance.exports.add_one(41) == 42\n
\n"}, "wasmer.wasmer.Instance.__init__": {"fullname": "wasmer.wasmer.Instance.__init__", "modulename": "wasmer.wasmer", "qualname": "Instance.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Instance.exports": {"fullname": "wasmer.wasmer.Instance.exports", "modulename": "wasmer.wasmer", "qualname": "Instance.exports", "type": "variable", "doc": "

The exports of the instance, as an object of kind Exports.

\n\n

Example

\n\n

See the Exports class.

\n"}, "wasmer.wasmer.Buffer": {"fullname": "wasmer.wasmer.Buffer", "modulename": "wasmer.wasmer", "qualname": "Buffer", "type": "class", "doc": "

Represents a read-and-write buffer over data of a memory.

\n\n

It is built by the Memory.buffer getter.

\n\n

It implements the Python buffer protocol, so it\nis possible to read and write bytes with bytes,\nbytearray or memoryview.

\n\n

Example

\n\n
from wasmer import Memory, MemoryType, Store\n\nstore = Store()\nmemory = Memory(store, MemoryType(minimum=128))\n\n# Let's write data with a `Int8Array` view for example.\nint8 = memory.int8_view()\nint8[0] = 1\nint8[1] = 2\nint8[2] = 3\nint8[3] = 0x57\nint8[4] = 0x61\nint8[5] = 0x73\nint8[6] = 0x6d\nint8[7] = 0x65\nint8[8] = 0x72\n\n# Let's read data with a `Buffer` for example.\nbyte_array = bytearray(memory.buffer)\n\nassert byte_array[0:3] == b'\\x01\\x02\\x03'\nassert byte_array[3:9].decode() == 'Wasmer'\n
\n"}, "wasmer.wasmer.Buffer.__init__": {"fullname": "wasmer.wasmer.Buffer.__init__", "modulename": "wasmer.wasmer", "qualname": "Buffer.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Float32Array": {"fullname": "wasmer.wasmer.Float32Array", "modulename": "wasmer.wasmer", "qualname": "Float32Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Float32Array.__init__": {"fullname": "wasmer.wasmer.Float32Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Float32Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Float32Array.bytes_per_element": {"fullname": "wasmer.wasmer.Float32Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Float32Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Float64Array": {"fullname": "wasmer.wasmer.Float64Array", "modulename": "wasmer.wasmer", "qualname": "Float64Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Float64Array.__init__": {"fullname": "wasmer.wasmer.Float64Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Float64Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Float64Array.bytes_per_element": {"fullname": "wasmer.wasmer.Float64Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Float64Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int16Array": {"fullname": "wasmer.wasmer.Int16Array", "modulename": "wasmer.wasmer", "qualname": "Int16Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int16Array.__init__": {"fullname": "wasmer.wasmer.Int16Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int16Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int16Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int16Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int16Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int32Array": {"fullname": "wasmer.wasmer.Int32Array", "modulename": "wasmer.wasmer", "qualname": "Int32Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int32Array.__init__": {"fullname": "wasmer.wasmer.Int32Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int32Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int32Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int32Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int32Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int64Array": {"fullname": "wasmer.wasmer.Int64Array", "modulename": "wasmer.wasmer", "qualname": "Int64Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int64Array.__init__": {"fullname": "wasmer.wasmer.Int64Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int64Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int64Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int64Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int64Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int8Array": {"fullname": "wasmer.wasmer.Int8Array", "modulename": "wasmer.wasmer", "qualname": "Int8Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int8Array.__init__": {"fullname": "wasmer.wasmer.Int8Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int8Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int8Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int8Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int8Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint16Array": {"fullname": "wasmer.wasmer.Uint16Array", "modulename": "wasmer.wasmer", "qualname": "Uint16Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint16Array.__init__": {"fullname": "wasmer.wasmer.Uint16Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint16Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint16Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint16Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint32Array": {"fullname": "wasmer.wasmer.Uint32Array", "modulename": "wasmer.wasmer", "qualname": "Uint32Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint32Array.__init__": {"fullname": "wasmer.wasmer.Uint32Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint32Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint32Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint32Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint64Array": {"fullname": "wasmer.wasmer.Uint64Array", "modulename": "wasmer.wasmer", "qualname": "Uint64Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint64Array.__init__": {"fullname": "wasmer.wasmer.Uint64Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint64Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint64Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint64Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint8Array": {"fullname": "wasmer.wasmer.Uint8Array", "modulename": "wasmer.wasmer", "qualname": "Uint8Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint8Array.__init__": {"fullname": "wasmer.wasmer.Uint8Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint8Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint8Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint8Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Module": {"fullname": "wasmer.wasmer.Module", "modulename": "wasmer.wasmer", "qualname": "Module", "type": "class", "doc": "

A WebAssembly module contains stateless WebAssembly code that has\nalready been compiled and can be instantiated multiple times.

\n\n

Creates a new WebAssembly Module given the configuration\nin the store.

\n\n

If the provided bytes are not WebAssembly-like (start with\nb\"\\0asm\"), this function will try to to convert the bytes\nassuming they correspond to the WebAssembly text format.

\n\n

Security

\n\n

Before the code is compiled, it will be validated using the store\nfeatures.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nstore = Store()\n\n# Let's compile WebAssembly from bytes.\nmodule = Module(store, open('tests/tests.wasm', 'rb').read())\n\n# Let's compile WebAssembly from WAT.\nmodule = Module(store, '(module)')\n
\n"}, "wasmer.wasmer.Module.__init__": {"fullname": "wasmer.wasmer.Module.__init__", "modulename": "wasmer.wasmer", "qualname": "Module.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Module.validate": {"fullname": "wasmer.wasmer.Module.validate", "modulename": "wasmer.wasmer", "qualname": "Module.validate", "type": "function", "doc": "

Validates a new WebAssembly Module given the configuration\nin the Store.

\n\n

This validation is normally pretty fast and checks the enabled\nWebAssembly features in the Store engine to assure deterministic\nvalidation of the Module.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nassert Module.validate(Store(), wasm_bytes)\n
\n", "parameters": ["bytes"], "funcdef": "def"}, "wasmer.wasmer.Module.custom_sections": {"fullname": "wasmer.wasmer.Module.custom_sections", "modulename": "wasmer.wasmer", "qualname": "Module.custom_sections", "type": "function", "doc": "

Get the custom sections of the module given a name.

\n\n

Important

\n\n

Following the WebAssembly specification, one name can have\nmultiple custom sections. That's why a list of bytes is\nreturned rather than bytes.

\n\n

Consequently, the empty list represents the absence of a\ncustom section for the given name.

\n\n

Examples

\n\n
from wasmer import Store, Module\n\nmodule = Module(Store(), open('tests/custom_sections.wasm', 'rb').read())\n\nassert module.custom_sections('easter_egg') == [b'Wasmer']\nassert module.custom_sections('hello') == [b'World!']\nassert module.custom_sections('foo') == []\n
\n", "parameters": ["self", "name"], "funcdef": "def"}, "wasmer.wasmer.Module.serialize": {"fullname": "wasmer.wasmer.Module.serialize", "modulename": "wasmer.wasmer", "qualname": "Module.serialize", "type": "function", "doc": "

Serializes a module into a binary representation that the\nEngine can later process via Module.deserialize.

\n\n

Examples

\n\n
from wasmer import Store, Module\n\nstore = Store()\nmodule = Module(Store(), '(module)')\nserialized_module = module.serialize()\n\nassert type(serialized_module) == bytes\n
\n", "parameters": ["self"], "funcdef": "def"}, "wasmer.wasmer.Module.deserialize": {"fullname": "wasmer.wasmer.Module.deserialize", "modulename": "wasmer.wasmer", "qualname": "Module.deserialize", "type": "function", "doc": "

Deserializes a serialized module binary into a Module.

\n\n

Note: the module has to be serialized before with the\nserialize method.

\n\n

Safety

\n\n

This function is inherently unsafe as the provided bytes:

\n\n
    \n
  1. Are going to be deserialized directly into Rust objects.
  2. \n
  3. Contains the function assembly bodies and, if intercepted,\na malicious actor could inject code into executable\nmemory.
  4. \n
\n\n

And as such, the deserialize method is unsafe.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (func (export "function") (param i32 i64)))\n    """\n)\nserialized_module = module.serialize()\n\ndel module\n\nmodule = Module.deserialize(store, serialized_module)\n\ndel serialized_module\n\nassert isinstance(module, Module)\n
\n", "parameters": ["self", "bytes"], "funcdef": "def"}, "wasmer.wasmer.Module.exports": {"fullname": "wasmer.wasmer.Module.exports", "modulename": "wasmer.wasmer", "qualname": "Module.exports", "type": "variable", "doc": "

Returns a list of ExportType objects, which represents all\nthe exports of this module.

\n\n

The order of the exports is guaranteed to be the same as in\nthe WebAssembly bytecode.

\n\n

Example

\n\n

See the ExportType class to learn more.

\n"}, "wasmer.wasmer.Module.name": {"fullname": "wasmer.wasmer.Module.name", "modulename": "wasmer.wasmer", "qualname": "Module.name", "type": "variable", "doc": "

Get or set the current name of the module.

\n\n

This name is normally set in the WebAssembly bytecode by some\ncompilers, but can be also overwritten.

\n\n

Not all modules have a name.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nstore = Store()\n\n# Module with an existing name.\nassert Module(store, '(module $moduleName)').name == 'moduleName'\n\n# Module with no name.\nassert Module(store, '(module)').name == None\n\n# Change the module's name.\nmodule = Module(store, '(module $moduleName)')\nmodule.name = 'hello'\nassert module.name == 'hello'\n
\n"}, "wasmer.wasmer.Module.imports": {"fullname": "wasmer.wasmer.Module.imports", "modulename": "wasmer.wasmer", "qualname": "Module.imports", "type": "variable", "doc": "

Returns a list of ImportType objects, which represents all\nthe imports of this module.

\n\n

The order of the imports is guaranteed to be the same as in\nthe WebAssembly bytecode.

\n\n

Example

\n\n

See the ImportType class to learn more.

\n"}, "wasmer.wasmer.Store": {"fullname": "wasmer.wasmer.Store", "modulename": "wasmer.wasmer", "qualname": "Store", "type": "class", "doc": "

The store represents all global state that can be manipulated by\nWebAssembly programs. It consists of the runtime representation of\nall instances of functions, tables, memories, and globals that\nhave been allocated during the lifetime of the abstract machine.

\n\n

The Store holds the engine (that is \u2014amongst many things\u2014 used\nto compile the WebAssembly bytes into a valid module artifact), in\naddition to the Tunables (that are used to create the memories,\ntables and globals). The engine comes from the wasmer.engine\nmodule.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#store

\n\n

Read the documentation of the engine submodule to learn more.

\n\n

Examples

\n\n

Use the Universal engine with no compiler (headless mode):

\n\n
from wasmer import engine, Store\n\nstore = Store(engine.Universal())\n
\n\n

Use the Universal engine with the LLVM compiler:

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_llvm import Compiler\n\nstore = Store(engine.Universal(Compiler))\n
\n\n

If the store is built without an engine, the Universal engine will be\nused, with the first compiler found in this order:\ncompiler_compiler_cranelift, compiler_compiler_llvm,\ncompiler_compiler_singlepass, otherwise it will run in headless\nmode.

\n"}, "wasmer.wasmer.Store.__init__": {"fullname": "wasmer.wasmer.Store.__init__", "modulename": "wasmer.wasmer", "qualname": "Store.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Store.engine_name": {"fullname": "wasmer.wasmer.Store.engine_name", "modulename": "wasmer.wasmer", "qualname": "Store.engine_name", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Store.compiler_name": {"fullname": "wasmer.wasmer.Store.compiler_name", "modulename": "wasmer.wasmer", "qualname": "Store.compiler_name", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.ExportType": {"fullname": "wasmer.wasmer.ExportType", "modulename": "wasmer.wasmer", "qualname": "ExportType", "type": "class", "doc": "

Represents the type of a module's export (not to be confused with\nan export of an instance). It is usually built from the\nModule.exports getter.

\n\n

Examples

\n\n
from wasmer import Store, Module, ExportType, FunctionType, GlobalType, TableType, MemoryType, Type\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (func (export "function") (param i32 i64))\n      (global (export "global") i32 (i32.const 7))\n      (table (export "table") 0 funcref)\n      (memory (export "memory") 1))\n    """\n)\n\nexports = module.exports\n\nassert isinstance(exports[0], ExportType)\n\nassert exports[0].name == "function"\nassert isinstance(exports[0].type, FunctionType)\nassert exports[0].type.params == [Type.I32, Type.I64]\nassert exports[0].type.results == []\n\nassert exports[1].name == "global"\nassert isinstance(exports[1].type, GlobalType)\nassert exports[1].type.type == Type.I32\nassert exports[1].type.mutable == False\n\nassert exports[2].name == "table"\nassert isinstance(exports[2].type, TableType)\nassert exports[2].type.type == Type.FUNC_REF\nassert exports[2].type.minimum == 0\nassert exports[2].type.maximum == None\n\nassert exports[3].name == "memory"\nassert isinstance(exports[3].type, MemoryType)\nassert exports[3].type.minimum == 1\nassert exports[3].type.maximum == None\nassert exports[3].type.shared == False\n
\n"}, "wasmer.wasmer.ExportType.__init__": {"fullname": "wasmer.wasmer.ExportType.__init__", "modulename": "wasmer.wasmer", "qualname": "ExportType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ExportType.name": {"fullname": "wasmer.wasmer.ExportType.name", "modulename": "wasmer.wasmer", "qualname": "ExportType.name", "type": "variable", "doc": "

The name of the export.

\n"}, "wasmer.wasmer.ExportType.type": {"fullname": "wasmer.wasmer.ExportType.type", "modulename": "wasmer.wasmer", "qualname": "ExportType.type", "type": "variable", "doc": "

The type of the export. Possible values are: FunctionType,\nGlobalType, TableType and MemoryType.

\n"}, "wasmer.wasmer.FunctionType": {"fullname": "wasmer.wasmer.FunctionType", "modulename": "wasmer.wasmer", "qualname": "FunctionType", "type": "class", "doc": "

Represents the signature of a function that is either implemented\nin WebAssembly module or exposed to WebAssembly by the host.

\n\n

WebAssembly functions can have 0 or more parameters and results.

\n\n

Example

\n\n
from wasmer import FunctionType, Type\n\n# Type: (i32, i32) -> i32\nfunction_type = FunctionType(\n    params=[Type.I32, Type.I32],\n    results=[Type.I32]\n)\n
\n"}, "wasmer.wasmer.FunctionType.__init__": {"fullname": "wasmer.wasmer.FunctionType.__init__", "modulename": "wasmer.wasmer", "qualname": "FunctionType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.FunctionType.results": {"fullname": "wasmer.wasmer.FunctionType.results", "modulename": "wasmer.wasmer", "qualname": "FunctionType.results", "type": "variable", "doc": "

Results, i.e. outputs, of the function.

\n"}, "wasmer.wasmer.FunctionType.params": {"fullname": "wasmer.wasmer.FunctionType.params", "modulename": "wasmer.wasmer", "qualname": "FunctionType.params", "type": "variable", "doc": "

Parameters, i.e. inputs, of the function.

\n"}, "wasmer.wasmer.GlobalType": {"fullname": "wasmer.wasmer.GlobalType", "modulename": "wasmer.wasmer", "qualname": "GlobalType", "type": "class", "doc": "

A descriptor for a WebAssembly global.

\n\n

Example

\n\n
from wasmer import GlobalType, Type\n\n# Describes a global of kind `i32` which is immutable.\nglobal_type = GlobalType(Type.I32, mutable=False)\n
\n"}, "wasmer.wasmer.GlobalType.__init__": {"fullname": "wasmer.wasmer.GlobalType.__init__", "modulename": "wasmer.wasmer", "qualname": "GlobalType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.GlobalType.mutable": {"fullname": "wasmer.wasmer.GlobalType.mutable", "modulename": "wasmer.wasmer", "qualname": "GlobalType.mutable", "type": "variable", "doc": "

A flag indicating whether the value may change at runtime.

\n"}, "wasmer.wasmer.GlobalType.type": {"fullname": "wasmer.wasmer.GlobalType.type", "modulename": "wasmer.wasmer", "qualname": "GlobalType.type", "type": "variable", "doc": "

The type of the value stored in the global.

\n"}, "wasmer.wasmer.ImportType": {"fullname": "wasmer.wasmer.ImportType", "modulename": "wasmer.wasmer", "qualname": "ImportType", "type": "class", "doc": "

Represents the type of a module's import. It is usually built from\nthe Module.imports getter.

\n\n

Example

\n\n
from wasmer import Store, Module, ImportType, FunctionType, GlobalType, TableType, MemoryType, Type\n\nmodule = Module(\n    Store(),\n    """\n    (module\n    (import "ns" "function" (func))\n    (import "ns" "global" (global f32))\n    (import "ns" "table" (table 1 2 anyfunc))\n    (import "ns" "memory" (memory 3 4)))\n    """\n)\nimports = module.imports\n\nassert isinstance(imports[0], ImportType)\n\nassert imports[0].module == "ns"\nassert imports[0].name == "function"\nassert isinstance(imports[0].type, FunctionType)\nassert imports[0].type.params == []\nassert imports[0].type.results == []\n\nassert imports[1].module == "ns"\nassert imports[1].name == "global"\nassert isinstance(imports[1].type, GlobalType)\nassert imports[1].type.type == Type.F32\nassert imports[1].type.mutable == False\n\nassert imports[2].module == "ns"\nassert imports[2].name == "table"\nassert isinstance(imports[2].type, TableType)\nassert imports[2].type.type == Type.FUNC_REF\nassert imports[2].type.minimum == 1\nassert imports[2].type.maximum == 2\n\nassert imports[3].module == "ns"\nassert imports[3].name == "memory"\nassert isinstance(imports[3].type, MemoryType)\nassert imports[3].type.minimum == 3\nassert imports[3].type.maximum == 4\nassert imports[3].type.shared == False\n
\n"}, "wasmer.wasmer.ImportType.__init__": {"fullname": "wasmer.wasmer.ImportType.__init__", "modulename": "wasmer.wasmer", "qualname": "ImportType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ImportType.type": {"fullname": "wasmer.wasmer.ImportType.type", "modulename": "wasmer.wasmer", "qualname": "ImportType.type", "type": "variable", "doc": "

The type of the import. Possible values are: FunctionType,\nGlobalType, TableType and MemoryType.

\n"}, "wasmer.wasmer.ImportType.module": {"fullname": "wasmer.wasmer.ImportType.module", "modulename": "wasmer.wasmer", "qualname": "ImportType.module", "type": "variable", "doc": "

The namespace name (also known as module name).

\n"}, "wasmer.wasmer.ImportType.name": {"fullname": "wasmer.wasmer.ImportType.name", "modulename": "wasmer.wasmer", "qualname": "ImportType.name", "type": "variable", "doc": "

The name of the import.

\n"}, "wasmer.wasmer.MemoryType": {"fullname": "wasmer.wasmer.MemoryType", "modulename": "wasmer.wasmer", "qualname": "MemoryType", "type": "class", "doc": "

A descriptor for a WebAssembly memory type.

\n\n

Memories are described in units of pages (64Kb) and represent\ncontiguous chunks of addressable memory.

\n\n

Example

\n\n
from wasmer import MemoryType\n\nmemory_type = MemoryType(\n    minimum=1,\n    shared=True\n)\n
\n"}, "wasmer.wasmer.MemoryType.__init__": {"fullname": "wasmer.wasmer.MemoryType.__init__", "modulename": "wasmer.wasmer", "qualname": "MemoryType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.MemoryType.minimum": {"fullname": "wasmer.wasmer.MemoryType.minimum", "modulename": "wasmer.wasmer", "qualname": "MemoryType.minimum", "type": "variable", "doc": "

The minimum number of pages in the memory.

\n"}, "wasmer.wasmer.MemoryType.shared": {"fullname": "wasmer.wasmer.MemoryType.shared", "modulename": "wasmer.wasmer", "qualname": "MemoryType.shared", "type": "variable", "doc": "

Whether the memory may be shared between multiple threads.

\n"}, "wasmer.wasmer.MemoryType.maximum": {"fullname": "wasmer.wasmer.MemoryType.maximum", "modulename": "wasmer.wasmer", "qualname": "MemoryType.maximum", "type": "variable", "doc": "

The maximum number of pages in the memory. It is optional.

\n"}, "wasmer.wasmer.TableType": {"fullname": "wasmer.wasmer.TableType", "modulename": "wasmer.wasmer", "qualname": "TableType", "type": "class", "doc": "

A descriptor for a table in a WebAssembly module.

\n\n

Tables are contiguous chunks of a specific element, typically a\nfuncref or externref. The most common use for tables is a\nfunction table through which call_indirect can invoke other\nfunctions.

\n\n

Example

\n\n
from wasmer import TableType, Type\n\ntable_type = TableType(Type.I32, minimum=7, maximum=42)\n
\n"}, "wasmer.wasmer.TableType.__init__": {"fullname": "wasmer.wasmer.TableType.__init__", "modulename": "wasmer.wasmer", "qualname": "TableType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.TableType.maximum": {"fullname": "wasmer.wasmer.TableType.maximum", "modulename": "wasmer.wasmer", "qualname": "TableType.maximum", "type": "variable", "doc": "

The maximum number of elements in the table.

\n"}, "wasmer.wasmer.TableType.type": {"fullname": "wasmer.wasmer.TableType.type", "modulename": "wasmer.wasmer", "qualname": "TableType.type", "type": "variable", "doc": "

The type of data stored in elements of the table.

\n"}, "wasmer.wasmer.TableType.minimum": {"fullname": "wasmer.wasmer.TableType.minimum", "modulename": "wasmer.wasmer", "qualname": "TableType.minimum", "type": "variable", "doc": "

The minimum number of elements in the table.

\n"}, "wasmer.wasmer.Value": {"fullname": "wasmer.wasmer.Value", "modulename": "wasmer.wasmer", "qualname": "Value", "type": "class", "doc": "

Represents a WebAssembly value of a specific type.

\n\n

Most of the time, the types for WebAssembly values will be\ninferred. When it's not possible, the Value class is necessary.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.i32(42)\n
\n"}, "wasmer.wasmer.Value.__init__": {"fullname": "wasmer.wasmer.Value.__init__", "modulename": "wasmer.wasmer", "qualname": "Value.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Value.i32": {"fullname": "wasmer.wasmer.Value.i32", "modulename": "wasmer.wasmer", "qualname": "Value.i32", "type": "function", "doc": "

Build a WebAssembly i32 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.i32(42)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.i64": {"fullname": "wasmer.wasmer.Value.i64", "modulename": "wasmer.wasmer", "qualname": "Value.i64", "type": "function", "doc": "

Build a WebAssembly i64 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.i64(42)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.f32": {"fullname": "wasmer.wasmer.Value.f32", "modulename": "wasmer.wasmer", "qualname": "Value.f32", "type": "function", "doc": "

Build a WebAssembly f32 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.f32(4.2)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.f64": {"fullname": "wasmer.wasmer.Value.f64", "modulename": "wasmer.wasmer", "qualname": "Value.f64", "type": "function", "doc": "

Build a WebAssembly f64 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.f64(4.2)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.v128": {"fullname": "wasmer.wasmer.Value.v128", "modulename": "wasmer.wasmer", "qualname": "Value.v128", "type": "function", "doc": "

Build a WebAssembly v128 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.v128(42)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Type": {"fullname": "wasmer.wasmer.Type", "modulename": "wasmer.wasmer", "qualname": "Type", "type": "class", "doc": "

An enumeration.

\n"}, "wasmer.wasmer.Type.I32": {"fullname": "wasmer.wasmer.Type.I32", "modulename": "wasmer.wasmer", "qualname": "Type.I32", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.I64": {"fullname": "wasmer.wasmer.Type.I64", "modulename": "wasmer.wasmer", "qualname": "Type.I64", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.F32": {"fullname": "wasmer.wasmer.Type.F32", "modulename": "wasmer.wasmer", "qualname": "Type.F32", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.F64": {"fullname": "wasmer.wasmer.Type.F64", "modulename": "wasmer.wasmer", "qualname": "Type.F64", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.V128": {"fullname": "wasmer.wasmer.Type.V128", "modulename": "wasmer.wasmer", "qualname": "Type.V128", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.EXTERN_REF": {"fullname": "wasmer.wasmer.Type.EXTERN_REF", "modulename": "wasmer.wasmer", "qualname": "Type.EXTERN_REF", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.FUNC_REF": {"fullname": "wasmer.wasmer.Type.FUNC_REF", "modulename": "wasmer.wasmer", "qualname": "Type.FUNC_REF", "type": "variable", "doc": "

\n"}, "wasmer_compiler_cranelift": {"fullname": "wasmer_compiler_cranelift", "modulename": "wasmer_compiler_cranelift", "qualname": "", "type": "module", "doc": "

The Cranelift compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "", "type": "module", "doc": "

The Cranelift compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "Compiler", "type": "class", "doc": "

The Cranelift compiler.

\n\n

Example

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_cranelift import Compiler\n\nstore = Store(engine.JIT(Compiler))\n
\n"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "Compiler.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "Compiler.into_opaque_compiler", "type": "function", "doc": "

Please don't use it. Internal use only.

\n", "parameters": ["unknown"], "funcdef": "def"}, "wasmer_compiler_llvm": {"fullname": "wasmer_compiler_llvm", "modulename": "wasmer_compiler_llvm", "qualname": "", "type": "module", "doc": "

The LLVM compiler, designed for the wasmer Python package (a\nWebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "", "type": "module", "doc": "

The LLVM compiler, designed for the wasmer Python package (a\nWebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "Compiler", "type": "class", "doc": "

The LLVM compiler.

\n\n

Example

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_cranelift import Compiler\n\nstore = Store(engine.JIT(Compiler))\n
\n"}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "Compiler.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "Compiler.into_opaque_compiler", "type": "function", "doc": "

Please don't use it. Internal use only.

\n", "parameters": ["unknown"], "funcdef": "def"}, "wasmer_compiler_singlepass": {"fullname": "wasmer_compiler_singlepass", "modulename": "wasmer_compiler_singlepass", "qualname": "", "type": "module", "doc": "

The Singlepass compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "", "type": "module", "doc": "

The Singlepass compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "Compiler", "type": "class", "doc": "

The Singlepass compiler.

\n\n

Example

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_singlepass import Compiler\n\nstore = Store(engine.JIT(Compiler))\n
\n"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "Compiler.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "Compiler.into_opaque_compiler", "type": "function", "doc": "

Please don't use it. Internal use only.

\n", "parameters": ["unknown"], "funcdef": "def"}}, "docInfo": {"wasmer": {"qualname": 0, "fullname": 1, "doc": 154}, "wasmer.wasmer": {"qualname": 0, "fullname": 2, "doc": 154}, "wasmer.wasmer.wat2wasm": {"qualname": 1, "fullname": 3, "doc": 22}, "wasmer.wasmer.wasm2wat": {"qualname": 1, "fullname": 3, "doc": 21}, "wasmer.wasmer.Exports": {"qualname": 1, "fullname": 3, "doc": 102}, "wasmer.wasmer.Exports.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ExportsIterator": {"qualname": 1, "fullname": 3, "doc": 76}, "wasmer.wasmer.ExportsIterator.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Function": {"qualname": 1, "fullname": 3, "doc": 221}, "wasmer.wasmer.Function.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Function.type": {"qualname": 2, "fullname": 4, "doc": 71}, "wasmer.wasmer.Global": {"qualname": 1, "fullname": 3, "doc": 76}, "wasmer.wasmer.Global.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Global.type": {"qualname": 2, "fullname": 4, "doc": 35}, "wasmer.wasmer.Global.mutable": {"qualname": 2, "fullname": 4, "doc": 24}, "wasmer.wasmer.Global.value": {"qualname": 2, "fullname": 4, "doc": 32}, "wasmer.wasmer.Memory": {"qualname": 1, "fullname": 3, "doc": 109}, "wasmer.wasmer.Memory.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Memory.grow": {"qualname": 2, "fullname": 4, "doc": 33}, "wasmer.wasmer.Memory.uint8_view": {"qualname": 2, "fullname": 4, "doc": 39}, "wasmer.wasmer.Memory.int8_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.uint16_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.int16_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.uint32_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.int32_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.uint64_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.int64_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.float32_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.float64_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.type": {"qualname": 2, "fullname": 4, "doc": 46}, "wasmer.wasmer.Memory.size": {"qualname": 2, "fullname": 4, "doc": 24}, "wasmer.wasmer.Memory.data_size": {"qualname": 2, "fullname": 4, "doc": 24}, "wasmer.wasmer.Memory.buffer": {"qualname": 2, "fullname": 4, "doc": 34}, "wasmer.wasmer.Table": {"qualname": 1, "fullname": 3, "doc": 29}, "wasmer.wasmer.Table.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Table.type": {"qualname": 2, "fullname": 4, "doc": 50}, "wasmer.wasmer.Table.size": {"qualname": 2, "fullname": 4, "doc": 35}, "wasmer.wasmer.ImportObject": {"qualname": 1, "fullname": 3, "doc": 338}, "wasmer.wasmer.ImportObject.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ImportObject.contains_namespace": {"qualname": 2, "fullname": 4, "doc": 20}, "wasmer.wasmer.ImportObject.to_dict": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.ImportObject.register": {"qualname": 2, "fullname": 4, "doc": 50}, "wasmer.wasmer.Instance": {"qualname": 1, "fullname": 3, "doc": 229}, "wasmer.wasmer.Instance.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Instance.exports": {"qualname": 2, "fullname": 4, "doc": 9}, "wasmer.wasmer.Buffer": {"qualname": 1, "fullname": 3, "doc": 99}, "wasmer.wasmer.Buffer.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Float32Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Float32Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Float32Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Float64Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Float64Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Float64Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int16Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int16Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int16Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int32Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int32Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int32Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int64Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int64Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int64Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int8Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int8Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int8Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint16Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint16Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint32Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint32Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint64Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint64Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint8Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint8Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Module": {"qualname": 1, "fullname": 3, "doc": 75}, "wasmer.wasmer.Module.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Module.validate": {"qualname": 2, "fullname": 4, "doc": 31}, "wasmer.wasmer.Module.custom_sections": {"qualname": 2, "fullname": 4, "doc": 71}, "wasmer.wasmer.Module.serialize": {"qualname": 2, "fullname": 4, "doc": 30}, "wasmer.wasmer.Module.deserialize": {"qualname": 2, "fullname": 4, "doc": 78}, "wasmer.wasmer.Module.exports": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Module.name": {"qualname": 2, "fullname": 4, "doc": 67}, "wasmer.wasmer.Module.imports": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Store": {"qualname": 1, "fullname": 3, "doc": 106}, "wasmer.wasmer.Store.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Store.engine_name": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Store.compiler_name": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ExportType": {"qualname": 1, "fullname": 3, "doc": 187}, "wasmer.wasmer.ExportType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ExportType.name": {"qualname": 2, "fullname": 4, "doc": 2}, "wasmer.wasmer.ExportType.type": {"qualname": 2, "fullname": 4, "doc": 8}, "wasmer.wasmer.FunctionType": {"qualname": 1, "fullname": 3, "doc": 35}, "wasmer.wasmer.FunctionType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.FunctionType.results": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.FunctionType.params": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.GlobalType": {"qualname": 1, "fullname": 3, "doc": 19}, "wasmer.wasmer.GlobalType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.GlobalType.mutable": {"qualname": 2, "fullname": 4, "doc": 6}, "wasmer.wasmer.GlobalType.type": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.ImportType": {"qualname": 1, "fullname": 3, "doc": 216}, "wasmer.wasmer.ImportType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ImportType.type": {"qualname": 2, "fullname": 4, "doc": 8}, "wasmer.wasmer.ImportType.module": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.ImportType.name": {"qualname": 2, "fullname": 4, "doc": 2}, "wasmer.wasmer.MemoryType": {"qualname": 1, "fullname": 3, "doc": 24}, "wasmer.wasmer.MemoryType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.MemoryType.minimum": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.MemoryType.shared": {"qualname": 2, "fullname": 4, "doc": 6}, "wasmer.wasmer.MemoryType.maximum": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.TableType": {"qualname": 1, "fullname": 3, "doc": 34}, "wasmer.wasmer.TableType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.TableType.maximum": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.TableType.type": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.TableType.minimum": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.Value": {"qualname": 1, "fullname": 3, "doc": 23}, "wasmer.wasmer.Value.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Value.i32": {"qualname": 2, "fullname": 4, "doc": 12}, "wasmer.wasmer.Value.i64": {"qualname": 2, "fullname": 4, "doc": 12}, "wasmer.wasmer.Value.f32": {"qualname": 2, "fullname": 4, "doc": 13}, "wasmer.wasmer.Value.f64": {"qualname": 2, "fullname": 4, "doc": 13}, "wasmer.wasmer.Value.v128": {"qualname": 2, "fullname": 4, "doc": 12}, "wasmer.wasmer.Type": {"qualname": 1, "fullname": 3, "doc": 1}, "wasmer.wasmer.Type.I32": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.I64": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.F32": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.F64": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.V128": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.EXTERN_REF": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.FUNC_REF": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_cranelift": {"qualname": 0, "fullname": 1, "doc": 15}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"qualname": 0, "fullname": 2, "doc": 15}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"qualname": 1, "fullname": 3, "doc": 15}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer_compiler_llvm": {"qualname": 0, "fullname": 1, "doc": 15}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"qualname": 0, "fullname": 2, "doc": 15}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"qualname": 1, "fullname": 3, "doc": 15}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer_compiler_singlepass": {"qualname": 0, "fullname": 1, "doc": 15}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"qualname": 0, "fullname": 2, "doc": 15}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"qualname": 1, "fullname": 3, "doc": 15}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"qualname": 2, "fullname": 4, "doc": 5}}, "length": 147, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}}, "docs": {}, "df": 0}, "s": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.engine_name": {"tf": 1}}, "df": 1}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}}, "df": 31}}}}}}}}, "f": {"3": {"2": {"docs": {"wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 4}}}}}}}, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.Type": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}, "wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}, "wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.to_dict": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}}, "df": 17}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}}, "df": 5}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 10}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 2}}}}}}}, "v": {"1": {"2": {"8": {"docs": {"wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}}}}, "i": {"3": {"2": {"docs": {"wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 5}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.Store.engine_name": {"tf": 1}, "wasmer.wasmer.Store.compiler_name": {"tf": 1}}, "df": 4}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}}, "df": 3}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 10}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.compiler_name": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 1}}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.wat2wasm": {"tf": 1.4142135623730951}, "wasmer.wasmer.wasm2wat": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.validate": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.imports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store.engine_name": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store.compiler_name": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.name": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.results": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.params": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.module": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.name": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.shared": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.maximum": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.minimum": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.v128": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.I32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.I64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.F32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.F64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.V128": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.EXTERN_REF": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.FUNC_REF": {"tf": 1.4142135623730951}}, "df": 132, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}}}, "t": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}}, "docs": {}, "df": 0}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.engine_name": {"tf": 1}}, "df": 1}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}}, "df": 31}}}}}}}}, "f": {"3": {"2": {"docs": {"wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 4}}}}}}}, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.Type": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}, "wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}, "wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.to_dict": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}}, "df": 17}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}}, "df": 5}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 10}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 2}}}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 2}}}}}}}, "v": {"1": {"2": {"8": {"docs": {"wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}}}}, "i": {"3": {"2": {"docs": {"wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 5}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.Store.engine_name": {"tf": 1}, "wasmer.wasmer.Store.compiler_name": {"tf": 1}}, "df": 4}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}}, "df": 3}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 10}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.compiler_name": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 1}}}}}}}, "doc": {"root": {"0": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.Instance": {"tf": 2}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 2.6457513110645907}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 2.449489742783178}}, "df": 21, "x": {"5": {"7": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"1": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "5": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}, "7": {"2": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "3": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "1": {"1": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"8": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"3": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "7": {"docs": {"wasmer.wasmer.Memory.type": {"tf": 1}}, "df": 1}, "9": {"6": {"6": {"0": {"8": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 2}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportType": {"tf": 2.6457513110645907}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 22}, "2": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportType": {"tf": 2.8284271247461903}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}}, "df": 12}, "3": {"9": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.wat2wasm": {"tf": 2}, "wasmer.wasmer.wasm2wat": {"tf": 2}, "wasmer.wasmer.Function": {"tf": 2.8284271247461903}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 2}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 2.449489742783178}, "wasmer.wasmer.Buffer": {"tf": 2.449489742783178}, "wasmer.wasmer.Float32Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Float64Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int16Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int32Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int64Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int8Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint16Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint32Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint64Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint8Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Module": {"tf": 2.8284271247461903}, "wasmer.wasmer.Module.custom_sections": {"tf": 3.7416573867739413}, "wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 3.605551275463989}}, "df": 26}, "docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 2}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportType": {"tf": 2.8284271247461903}}, "df": 12}, "4": {"1": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}, "2": {"docs": {"wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 11}, "docs": {"wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}}, "df": 4}, "5": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}}, "df": 2}, "6": {"4": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}, "b": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 1}}}, "5": {"5": {"3": {"6": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "7": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 6}, "8": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "9": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1.4142135623730951}}, "df": 1}}}}, "docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 64, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "_": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}}, "t": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer.wat2wasm": {"tf": 1.4142135623730951}, "wasmer.wasmer.wasm2wat": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 2}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 2.23606797749979}, "wasmer.wasmer.Module": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.validate": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1.7320508075688772}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 34}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 24, "_": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 5}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 11}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 23}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 17}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 12}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}}, "df": 6}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 14}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 10}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 12}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 3}, "r": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2.23606797749979}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 2}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global": {"tf": 2}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 4.358898943540674}, "wasmer.wasmer.ImportType": {"tf": 4.795831523312719}}, "df": 42}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 5, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 2.23606797749979}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportType": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}, "c": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Table": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 2}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 2.449489742783178}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.7320508075688772}}, "df": 15, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 5}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 4, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 19}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}}, "df": 3}}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 9}}}, "r": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 10}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}}, "df": 2, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}}, "df": 1}}}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "h": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.Instance": {"tf": 2}}, "df": 2}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "i": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "b": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 11}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 8}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 17}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 3}, "wasmer.wasmer": {"tf": 3}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2.23606797749979}, "wasmer.wasmer.ExportsIterator": {"tf": 2.23606797749979}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory": {"tf": 2}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Table.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Table.size": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportObject": {"tf": 4}, "wasmer.wasmer.Instance": {"tf": 3.872983346207417}, "wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}, "wasmer.wasmer.Module": {"tf": 2.8284271247461903}, "wasmer.wasmer.Module.validate": {"tf": 2}, "wasmer.wasmer.Module.custom_sections": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.serialize": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.deserialize": {"tf": 3.605551275463989}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 3.872983346207417}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 2.449489742783178}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 3.1622776601683795}, "wasmer.wasmer.ImportType.module": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 38, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1.7320508075688772}}, "df": 1}}}, "'": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 23}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 2}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 4.123105625617661}, "wasmer.wasmer.Memory.grow": {"tf": 2.6457513110645907}, "wasmer.wasmer.Memory.uint8_view": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.int8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.size": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.data_size": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.buffer": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportObject": {"tf": 3.1622776601683795}, "wasmer.wasmer.ImportObject.register": {"tf": 2}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 2.6457513110645907}, "wasmer.wasmer.Float32Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Float64Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int16Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int32Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int64Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int8Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint16Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint32Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint64Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint8Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.MemoryType": {"tf": 1.7320508075688772}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}}, "df": 42}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1.4142135623730951}}, "df": 15}}}, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 8}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}}, "df": 10}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 10}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 4}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 13}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 10}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 27, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float64Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int16Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int32Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int64Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int8Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint16Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint32Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint64Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint8Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 29, "_": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 11}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 14}}, "b": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}}, "df": 4, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 30, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "_": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 2.23606797749979}, "wasmer.wasmer.Buffer": {"tf": 2.23606797749979}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 15}, "d": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}, "\"": {"docs": {}, "df": 0, "\\": {"0": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}}}}, "f": {"3": {"2": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f32": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Value.f64": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}}, "df": 7}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2, "c": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportsIterator": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 2.23606797749979}, "wasmer.wasmer.Instance": {"tf": 2.23606797749979}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 10, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 4.47213595499958}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject.register": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 3}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1.7320508075688772}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}}, "df": 19, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}}, "df": 7}}}, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 2.449489742783178}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 6}}}, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 70}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Exports": {"tf": 4.123105625617661}, "wasmer.wasmer.ExportsIterator": {"tf": 2.8284271247461903}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.Instance": {"tf": 2.6457513110645907}, "wasmer.wasmer.Instance.exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 5.291502622129181}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}}, "df": 28, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 3.4641016151377544}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.4142135623730951}}, "df": 14}}}, "v": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Type": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 27}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 2.23606797749979}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 11, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 2.23606797749979}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 11}}}}}, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 21}}}}}}, "docs": {}, "df": 0}}}}, "s": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 2.449489742783178}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 3.4641016151377544}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 2}, "wasmer.wasmer.Global.mutable": {"tf": 2}, "wasmer.wasmer.Global.value": {"tf": 2}, "wasmer.wasmer.Memory": {"tf": 2.449489742783178}, "wasmer.wasmer.Memory.grow": {"tf": 2}, "wasmer.wasmer.Memory.uint8_view": {"tf": 2}, "wasmer.wasmer.Memory.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.size": {"tf": 2}, "wasmer.wasmer.Memory.data_size": {"tf": 2}, "wasmer.wasmer.Memory.buffer": {"tf": 2}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 4.58257569495584}, "wasmer.wasmer.ImportObject.register": {"tf": 2.23606797749979}, "wasmer.wasmer.Instance": {"tf": 2.8284271247461903}, "wasmer.wasmer.Buffer": {"tf": 2}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.validate": {"tf": 2}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 2}, "wasmer.wasmer.Module.deserialize": {"tf": 2.23606797749979}, "wasmer.wasmer.Module.name": {"tf": 2.449489742783178}, "wasmer.wasmer.Store": {"tf": 3}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.7320508075688772}}, "df": 48}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Table": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}}, "df": 10}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 10, "i": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 13}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function": {"tf": 2}, "wasmer.wasmer.Function.type": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 3.1622776601683795}, "wasmer.wasmer.ImportObject.register": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 3.7416573867739413}}, "df": 7, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function.type": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 16}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "t": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1.4142135623730951}}, "df": 4}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 2}}, "df": 2, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}}, "df": 5}}, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 10}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 3}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 5}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.name": {"tf": 3.1622776601683795}, "wasmer.wasmer.ExportType": {"tf": 2}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 2}, "wasmer.wasmer.ImportType.module": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}}, "df": 5}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}}, "df": 3}}, "w": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Value": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}}, "df": 10}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 14}}}}}, "s": {"docs": {"wasmer.wasmer.ImportType": {"tf": 2.8284271247461903}}, "df": 1}}, "i": {"3": {"2": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportsIterator": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function": {"tf": 3.605551275463989}, "wasmer.wasmer.Function.type": {"tf": 2.6457513110645907}, "wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 4}, "wasmer.wasmer.Instance": {"tf": 3.1622776601683795}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.FunctionType": {"tf": 2.449489742783178}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1.4142135623730951}}, "df": 19}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i64": {"tf": 1.4142135623730951}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 3.4641016151377544}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 3}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 5.656854249492381}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.4142135623730951}}, "df": 61, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Module.imports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 13}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer.Exports": {"tf": 2.449489742783178}, "wasmer.wasmer.ExportsIterator": {"tf": 2.23606797749979}, "wasmer.wasmer.Function": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 2}, "wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 3}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Table": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.type": {"tf": 2}, "wasmer.wasmer.Table.size": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 3.872983346207417}, "wasmer.wasmer.Instance": {"tf": 3.4641016151377544}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}}, "df": 28}, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 5}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 2}}}, "t": {"1": {"6": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 3.1622776601683795}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}}, "df": 2}}}}}, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}}}}}, "docs": {"wasmer.wasmer.Function": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject.register": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}, "g": {"docs": {"wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Global": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}}, "df": 2}}, "'": {"docs": {"wasmer.wasmer.Value": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportType": {"tf": 2.23606797749979}}, "df": 8}}}}}, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}, "v": {"1": {"2": {"8": {"docs": {"wasmer.wasmer.Value.v128": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 2.449489742783178}, "wasmer.wasmer.Value.i32": {"tf": 2}, "wasmer.wasmer.Value.i64": {"tf": 2}, "wasmer.wasmer.Value.f32": {"tf": 2}, "wasmer.wasmer.Value.f64": {"tf": 2}, "wasmer.wasmer.Value.v128": {"tf": 2}}, "df": 16}, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 2}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 22}}, "a": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "#": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Table": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1.4142135623730951}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2, "'": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}}, "df": 26, "_": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 2}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 3}}}}, "b": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 6}}}}, "l": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 4.69041575982343}, "wasmer.wasmer.Function.type": {"tf": 2.8284271247461903}, "wasmer.wasmer.Global": {"tf": 2}, "wasmer.wasmer.Global.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.type": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 4.69041575982343}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 2.23606797749979}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 4.47213595499958}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1.4142135623730951}}, "df": 23}, "i": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "'": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}}, "df": 2, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 2}, "wasmer.wasmer.Table.type": {"tf": 2.6457513110645907}, "wasmer.wasmer.Table.size": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.TableType": {"tf": 2}, "wasmer.wasmer.TableType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 17, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}}, "df": 6}}}, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Table.type": {"tf": 2}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 5}}, "i": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 13}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 2.8284271247461903}, "wasmer.wasmer": {"tf": 2.8284271247461903}, "wasmer.wasmer.Exports": {"tf": 3.7416573867739413}, "wasmer.wasmer.ExportsIterator": {"tf": 4.69041575982343}, "wasmer.wasmer.Function.type": {"tf": 2.8284271247461903}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 7.3484692283495345}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 2.449489742783178}, "wasmer.wasmer.Instance": {"tf": 4.898979485566356}, "wasmer.wasmer.Module.deserialize": {"tf": 2.8284271247461903}, "wasmer.wasmer.ExportType": {"tf": 4.69041575982343}, "wasmer.wasmer.ImportType": {"tf": 6.164414002968976}}, "df": 14}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "'": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 20}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 3}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 2.23606797749979}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 11}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 23, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 14}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 12}}}}}, "n": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 2.8284271247461903}, "wasmer.wasmer.Global.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.mutable": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.value": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.7320508075688772}}, "df": 16, "_": {"docs": {"wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 2}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.GlobalType": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}}, "df": 6}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 6}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}}, "df": 6}}}}, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 13}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"0": {"0": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 2}, "1": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"0": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"0": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"0": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "2": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"3": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {"wasmer.wasmer.Function": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 4}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}}, "df": 16}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {"wasmer.wasmer.Function": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 4}, "j": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 3}}}}}}, "pipeline": ["trimmer", "stopWordFilter", "stemmer"], "_isPrebuiltIndex": true}; + /** pdoc search index */const docs = {"version": "0.9.5", "fields": ["qualname", "fullname", "doc"], "ref": "fullname", "documentStore": {"docs": {"wasmer": {"fullname": "wasmer", "modulename": "wasmer", "qualname": "", "type": "module", "doc": "

Wasmer Python API

\n\n

\"PyPI \"Wasmer \"Wasmer \"Wasmer

\n\n

A complete and mature WebAssembly runtime for Python based on Wasmer.

\n\n

Features:

\n\n
    \n
  • Easy to use: The wasmer API mimics the standard WebAssembly API,
  • \n
  • Fast: wasmer executes the WebAssembly modules as fast as\npossible, close to native speed,
  • \n
  • Safe: All calls to WebAssembly will be fast, but more\nimportantly, completely safe and sandboxed.
  • \n
\n\n

Example

\n\n

The very basic example is the following:

\n\n
from wasmer import Store, Module, Instance\n\n# Create a store, which holds the engine, the compiler etc.\nstore = Store()\n\n# Let's assume we don't have WebAssembly bytes at hand. We will\n# write WebAssembly manually.\nmodule = Module(\n    store,\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\n\n# Instantiates the module.\ninstance = Instance(module)\n\n# Now, let's execute the `sum` function.\nassert instance.exports.sum(1, 2) == 3\n
\n\n

That's it. Now explore the API! Some pointers for the adventurers:

\n\n
    \n
  • The basic elements are Module and Instance,
  • \n
  • Exports of an instance are represented by the Exports object,
  • \n
  • Maybe your module needs to import Function, Memory, Global\nor Table? Well, there is the Python dict for that!
  • \n
  • It is possible to read and write Memory data with the Python\nbuffer protocol with Buffer.
  • \n
\n\n

Have fun!

\n"}, "wasmer.wasmer": {"fullname": "wasmer.wasmer", "modulename": "wasmer.wasmer", "qualname": "", "type": "module", "doc": "

Wasmer Python API

\n\n

\"PyPI \"Wasmer \"Wasmer \"Wasmer

\n\n

A complete and mature WebAssembly runtime for Python based on Wasmer.

\n\n

Features:

\n\n
    \n
  • Easy to use: The wasmer API mimics the standard WebAssembly API,
  • \n
  • Fast: wasmer executes the WebAssembly modules as fast as\npossible, close to native speed,
  • \n
  • Safe: All calls to WebAssembly will be fast, but more\nimportantly, completely safe and sandboxed.
  • \n
\n\n

Example

\n\n

The very basic example is the following:

\n\n
from wasmer import Store, Module, Instance\n\n# Create a store, which holds the engine, the compiler etc.\nstore = Store()\n\n# Let's assume we don't have WebAssembly bytes at hand. We will\n# write WebAssembly manually.\nmodule = Module(\n    store,\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\n\n# Instantiates the module.\ninstance = Instance(module)\n\n# Now, let's execute the `sum` function.\nassert instance.exports.sum(1, 2) == 3\n
\n\n

That's it. Now explore the API! Some pointers for the adventurers:

\n\n
    \n
  • The basic elements are Module and Instance,
  • \n
  • Exports of an instance are represented by the Exports object,
  • \n
  • Maybe your module needs to import Function, Memory, Global\nor Table? Well, there is the Python dict for that!
  • \n
  • It is possible to read and write Memory data with the Python\nbuffer protocol with Buffer.
  • \n
\n\n

Have fun!

\n"}, "wasmer.wasmer.wat2wasm": {"fullname": "wasmer.wasmer.wat2wasm", "modulename": "wasmer.wasmer", "qualname": "wat2wasm", "type": "function", "doc": "

Translate WebAssembly text source to WebAssembly binary format.

\n\n

Example

\n\n
from wasmer import wat2wasm\n\nassert wat2wasm('(module)') == b'\\x00asm\\x01\\x00\\x00\\x00'\n
\n", "parameters": ["wat"], "funcdef": "def"}, "wasmer.wasmer.wasm2wat": {"fullname": "wasmer.wasmer.wasm2wat", "modulename": "wasmer.wasmer", "qualname": "wasm2wat", "type": "function", "doc": "

Disassemble WebAssembly binary to WebAssembly text format.

\n\n

Example

\n\n
from wasmer import wasm2wat\n\nassert wasm2wat(b'\\x00asm\\x01\\x00\\x00\\x00') == '(module)'\n
\n", "parameters": ["bytes"], "funcdef": "def"}, "wasmer.wasmer.Exports": {"fullname": "wasmer.wasmer.Exports", "modulename": "wasmer.wasmer", "qualname": "Exports", "type": "class", "doc": "

Represents all the exports of an instance. It is built by\nInstance.exports.

\n\n

Exports can be of kind Function, Global, Table, or Memory.

\n\n

The Exports class implement the Iterator\nProtocol. Please see\nthe ExportsIterator class.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Exports, Function, Global, Table, Memory\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (func (export "func") (param i32 i64))\n      (global (export "glob") i32 (i32.const 7))\n      (table (export "tab") 0 funcref)\n      (memory (export "mem") 1))\n    """\n)\ninstance = Instance(module)\nexports = instance.exports\n\nassert isinstance(exports, Exports)\nassert isinstance(exports.func, Function)\nassert isinstance(exports.glob, Global)\nassert isinstance(exports.tab, Table)\nassert isinstance(exports.mem, Memory)\n
\n"}, "wasmer.wasmer.Exports.__init__": {"fullname": "wasmer.wasmer.Exports.__init__", "modulename": "wasmer.wasmer", "qualname": "Exports.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ExportsIterator": {"fullname": "wasmer.wasmer.ExportsIterator", "modulename": "wasmer.wasmer", "qualname": "ExportsIterator", "type": "class", "doc": "

Iterator over all the exports of an Instance.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Exports, Function, Global, Table, Memory\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (func (export "func") (param i32 i64))\n      (global (export "glob") i32 (i32.const 7))\n      (table (export "tab") 0 funcref)\n      (memory (export "mem") 1))\n    """\n)\ninstance = Instance(module)\n\nassert [name for (name, export) in instance.exports] == ["func", "glob", "tab", "mem"]\n
\n"}, "wasmer.wasmer.ExportsIterator.__init__": {"fullname": "wasmer.wasmer.ExportsIterator.__init__", "modulename": "wasmer.wasmer", "qualname": "ExportsIterator.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Function": {"fullname": "wasmer.wasmer.Function", "modulename": "wasmer.wasmer", "qualname": "Function", "type": "class", "doc": "

Represents a WebAssembly function instance.

\n\n

A function instance is the runtime representation of a\nfunction. It effectively is a closure of the original function\n(defined in either the host or the WebAssembly module) over the\nruntime Instance of its originating Module.

\n\n

The module instance is used to resolve references to other\ndefinitions during executing of the function.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#function-instances

\n\n

Note that the function can be invoked/called by the host only when\nit is an exported function (see Exports to see an example).

\n\n

Example

\n\n

To build a Function, we need its type. It can either be inferred\nfrom Python thanks to annotations, or be given with a\nFunctionType value.

\n\n

With Python annotations

\n\n

First, let's see with Python annotations:

\n\n
from wasmer import Store, Function, Type\n\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nstore = Store()\nfunction = Function(store, sum)\nfunction_type = function.type\n\nassert function_type.params == [Type.I32, Type.I32]\nassert function_type.results == [Type.I32]\n
\n\n

Here is the mapping table:

\n\n\n\n\n \n \n\n\n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n \n \n\n\n
AnnotationsWebAssembly type
int, 'i32', 'I32'Type.I32
'i64', 'I64'Type.I64
float, 'f32', 'F32'Type.F32
'f64', 'F64'Type.F64
Nonenone (only in return position)
\n\n

It is possible for a host function to return a tuple of the types above (except None), like:

\n\n
from wasmer import Store, Function, Type\n\ndef swap(x: 'i32', y: 'i64') -> ('i64', 'i32'):\n    return (y, x)\n\nstore = Store()\nfunction = Function(store, swap)\nfunction_type = function.type\n\nassert function_type.params == [Type.I32, Type.I64]\nassert function_type.results == [Type.I64, Type.I32]\n
\n\n

With FunctionType

\n\n

Second, the same code but without annotations and a FunctionType:

\n\n
from wasmer import Store, Function, FunctionType, Type\n\ndef sum(x, y):\n    return x + y\n\nstore = Store()\nfunction = Function(store, sum, FunctionType([Type.I32, Type.I32], [Type.I32]))\n
\n"}, "wasmer.wasmer.Function.__init__": {"fullname": "wasmer.wasmer.Function.__init__", "modulename": "wasmer.wasmer", "qualname": "Function.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Function.type": {"fullname": "wasmer.wasmer.Function.type", "modulename": "wasmer.wasmer", "qualname": "Function.type", "type": "variable", "doc": "

Returns the type of the function as a FunctionType object.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, FunctionType, Type\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\ninstance = Instance(module)\nsum = instance.exports.sum\nsum_type = sum.type\n\nassert isinstance(sum_type, FunctionType)\nassert sum_type.params == [Type.I32, Type.I32]\nassert sum_type.results == [Type.I32]\n
\n"}, "wasmer.wasmer.Global": {"fullname": "wasmer.wasmer.Global", "modulename": "wasmer.wasmer", "qualname": "Global", "type": "class", "doc": "

Represents a WebAssembly global instance.

\n\n

A global instance is the runtime representation of a global\nvariable. It consists of an individual value and a flag indicating\nwhether it is mutable.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#global-instances

\n\n

Example

\n\n
from wasmer import Store, Global, Value, Type\n\nstore = Store()\n\n# Let's create an immutable global.\nglobal_ = Global(store, Value.i32(42))\nglobal_type = global_.type\n\nassert global_.value == 42\nassert global_type.type == Type.I32\nassert global_type.mutable == False\n\n# Let's create an mutable global.\nglobal_ = Global(store, Value.i32(42), mutable=True)\n\nassert global_.mutable == True\n
\n"}, "wasmer.wasmer.Global.__init__": {"fullname": "wasmer.wasmer.Global.__init__", "modulename": "wasmer.wasmer", "qualname": "Global.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Global.type": {"fullname": "wasmer.wasmer.Global.type", "modulename": "wasmer.wasmer", "qualname": "Global.type", "type": "variable", "doc": "

Returns the type of the global as a value of kind GlobalType.

\n\n

Example

\n\n
from wasmer import Store, Global, Value, Type\n\nstore = Store()\n\nglobal_ = Global(store, Value.i32(42), mutable=False)\nglobal_type = global_.type\n\nassert global_type.type == Type.I32\nassert global_type.mutable == False\n
\n"}, "wasmer.wasmer.Global.value": {"fullname": "wasmer.wasmer.Global.value", "modulename": "wasmer.wasmer", "qualname": "Global.value", "type": "variable", "doc": "

Get or set a custom value to the global instance.

\n\n

Example

\n\n
from wasmer import Store, Global, Value\n\nstore = Store()\nglobal_ = Global(store, Value.i32(42), mutable=True)\n\nassert global_.value == 42\n\nglobal_.value = 153\n\nassert global_.value == 153\n
\n"}, "wasmer.wasmer.Global.mutable": {"fullname": "wasmer.wasmer.Global.mutable", "modulename": "wasmer.wasmer", "qualname": "Global.mutable", "type": "variable", "doc": "

Checks whether the global is mutable.

\n\n

Example

\n\n
from wasmer import Store, Global, Value\n\nstore = Store()\nglobal_ = Global(store, Value.i32(42), mutable=True)\n\nassert global_.mutable == True\n
\n"}, "wasmer.wasmer.Memory": {"fullname": "wasmer.wasmer.Memory", "modulename": "wasmer.wasmer", "qualname": "Memory", "type": "class", "doc": "

A WebAssembly memory instance.

\n\n

A memory instance is the runtime representation of a linear\nmemory. It consists of a vector of bytes and an optional maximum\nsize.

\n\n

The length of the vector always is a multiple of the WebAssembly\npage size, which is defined to be the constant 65536 \u2013 abbreviated\n64Ki. Like in a memory type, the maximum size in a memory\ninstance is given in units of this page size.

\n\n

A memory created by the host or in WebAssembly code will be accessible and\nmutable from both host and WebAssembly.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#memory-instances

\n\n

Example

\n\n

Creates a Memory from scratch:

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.size == 3\n
\n\n

Gets a memory from the exports of an instance:

\n\n
from wasmer import Store, Module, Instance, Memory\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\n\nmemory = instance.exports.memory\n\nassert isinstance(memory, Memory)\n
\n"}, "wasmer.wasmer.Memory.__init__": {"fullname": "wasmer.wasmer.Memory.__init__", "modulename": "wasmer.wasmer", "qualname": "Memory.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Memory.grow": {"fullname": "wasmer.wasmer.Memory.grow", "modulename": "wasmer.wasmer", "qualname": "Memory.grow", "type": "function", "doc": "

Grow memory by the specified amount of WebAssembly pages.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.size == 3\n\nmemory.grow(2)\n\nassert memory.size == 5\n
\n", "parameters": ["self", "number_of_pages"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint8_view": {"fullname": "wasmer.wasmer.Memory.uint8_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint8_view", "type": "function", "doc": "

Creates a read-and-write view over the memory data where\nelements are of kind uint8. See the Uint8Array view to\nlearn more.

\n\n

Examples

\n\n
from wasmer import Store, Memory, MemoryType, Uint8Array\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert isinstance(memory.uint8_view(offset=42), Uint8Array)\n
\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int8_view": {"fullname": "wasmer.wasmer.Memory.int8_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int8_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int8. See the Int8Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint16_view": {"fullname": "wasmer.wasmer.Memory.uint16_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint16_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind uint16. See the Uint16Array view to learn\nmore, and the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int16_view": {"fullname": "wasmer.wasmer.Memory.int16_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int16_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int16. See the Int16Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint32_view": {"fullname": "wasmer.wasmer.Memory.uint32_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint32_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind uint32. See the Uint32Array view to learn\nmore, and the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int32_view": {"fullname": "wasmer.wasmer.Memory.int32_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int32_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int32. See the Int32Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.uint64_view": {"fullname": "wasmer.wasmer.Memory.uint64_view", "modulename": "wasmer.wasmer", "qualname": "Memory.uint64_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind uint64. See the Uint64Array view to learn\nmore, and the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.int64_view": {"fullname": "wasmer.wasmer.Memory.int64_view", "modulename": "wasmer.wasmer", "qualname": "Memory.int64_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind int64. See the Int64Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.float32_view": {"fullname": "wasmer.wasmer.Memory.float32_view", "modulename": "wasmer.wasmer", "qualname": "Memory.float32_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind float32. See the Float32Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.float64_view": {"fullname": "wasmer.wasmer.Memory.float64_view", "modulename": "wasmer.wasmer", "qualname": "Memory.float64_view", "type": "function", "doc": "

Creates a read-and-write over the memory data where elements\nare of kind float64. See the Float64Array view to learn more,\nand the Memory.uint8_view method to see an example.

\n", "parameters": ["self", "offset"], "funcdef": "def"}, "wasmer.wasmer.Memory.type": {"fullname": "wasmer.wasmer.Memory.type", "modulename": "wasmer.wasmer", "qualname": "Memory.type", "type": "variable", "doc": "

Gets the memory type, of kind MemoryType.

\n\n

Example

\n\n
from wasmer import Store, Memory, Module, Instance\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nmemory = instance.exports.memory\nmemory_type = memory.type\n\nassert memory_type.minimum == 17\nassert memory_type.maximum == None\nassert memory_type.shared == False\n
\n"}, "wasmer.wasmer.Memory.data_size": {"fullname": "wasmer.wasmer.Memory.data_size", "modulename": "wasmer.wasmer", "qualname": "Memory.data_size", "type": "variable", "doc": "

Returns the size (in bytes) of the Memory.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.data_size == 196608\n
\n"}, "wasmer.wasmer.Memory.size": {"fullname": "wasmer.wasmer.Memory.size", "modulename": "wasmer.wasmer", "qualname": "Memory.size", "type": "variable", "doc": "

Returns the size (in pages) of the Memory.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert memory.size == 3\n
\n"}, "wasmer.wasmer.Memory.buffer": {"fullname": "wasmer.wasmer.Memory.buffer", "modulename": "wasmer.wasmer", "qualname": "Memory.buffer", "type": "variable", "doc": "

Creates a Python buffer to read and write the memory data. See\nthe Buffer class to learn more.

\n\n

Example

\n\n
from wasmer import Store, Memory, MemoryType, Buffer\n\nstore = Store()\nmemory_type = MemoryType(minimum=3)\nmemory = Memory(store, memory_type)\n\nassert isinstance(memory.buffer, Buffer)\n
\n"}, "wasmer.wasmer.Table": {"fullname": "wasmer.wasmer.Table", "modulename": "wasmer.wasmer", "qualname": "Table", "type": "class", "doc": "

A WebAssembly table instance.

\n\n

The Table class is an array-like structure representing a\nWebAssembly table, which stores function references.

\n\n

A table created by the host or in WebAssembly code will be\naccessible and mutable from both host and WebAssembly.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#table-instances

\n"}, "wasmer.wasmer.Table.__init__": {"fullname": "wasmer.wasmer.Table.__init__", "modulename": "wasmer.wasmer", "qualname": "Table.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Table.type": {"fullname": "wasmer.wasmer.Table.type", "modulename": "wasmer.wasmer", "qualname": "Table.type", "type": "variable", "doc": "

Gets the table type, as an object of kind TableType.

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Table, Type\n\nmodule = Module(Store(), '(module (table (export "table") 2 funcref))')\ninstance = Instance(module)\ntable = instance.exports.table\ntable_type = table.type\n\nassert table_type.type == Type.FUNC_REF\nassert table_type.minimum == 2\nassert table_type.maximum == None\n
\n"}, "wasmer.wasmer.Table.size": {"fullname": "wasmer.wasmer.Table.size", "modulename": "wasmer.wasmer", "qualname": "Table.size", "type": "variable", "doc": "

Gets the table size (in elements).

\n\n

Example

\n\n
from wasmer import Store, Module, Instance, Table\n\nmodule = Module(Store(), '(module (table (export "table") 2 funcref))')\ninstance = Instance(module)\ntable = instance.exports.table\n\nassert table.size == 2\n
\n"}, "wasmer.wasmer.ImportObject": {"fullname": "wasmer.wasmer.ImportObject", "modulename": "wasmer.wasmer", "qualname": "ImportObject", "type": "class", "doc": "

An ImportObject represents all of the import data used when\ninstantiating a WebAssembly module.

\n\n

Important

\n\n

This object is deprecated in favor of dictionaries in Python.\nYou can now type:

\n\n
from wasmer import Store, Function\n\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nstore = Store()\nimport_object = {}\nimport_object["math"] = {\n    "sum": Function(store, sum)\n}\n
\n\n

Example

\n\n

Importing a function, math.sum, and call it through the exported\nadd_one function:

\n\n
from wasmer import Store, Module, Instance, ImportObject, Function\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (import "math" "sum" (func $sum (param i32 i32) (result i32)))\n      (func (export "add_one") (param i32) (result i32)\n        local.get 0\n        i32.const 1\n        call $sum))\n    """\n)\n\nimport_object = ImportObject()\nimport_object.register(\n    "math",\n    {\n        "sum": Function(store, sum)\n    }\n)\n\ninstance = Instance(module, import_object)\n\nassert instance.exports.add_one(1) == 2\n
\n\n

Importing a memory:

\n\n
from wasmer import Store, Module, Instance, Memory, MemoryType, ImportObject\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (import "env" "memory" (memory $memory 1))\n      (func (export "increment")\n        i32.const 0\n        i32.const 0\n        i32.load    ;; load 0\n        i32.const 1\n        i32.add     ;; add 1\n        i32.store   ;; store at 0\n        ))\n    """\n)\n\nmemory = Memory(store, MemoryType(minimum=1))\nview = memory.uint8_view(offset=0)\n\nimport_object = ImportObject()\nimport_object.register(\n    "env",\n    {\n        "memory": memory\n    }\n)\n\ninstance = Instance(module, import_object)\n\nassert view[0] == 0\ninstance.exports.increment()\nassert view[0] == 1\ninstance.exports.increment()\nassert view[0] == 2\n
\n\n

Importing a global:

\n\n
from wasmer import Store, Module, Instance, ImportObject, Global, Value\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (import "env" "global" (global $global (mut i32)))\n      (func (export "read_g") (result i32)\n        global.get $global)\n      (func (export "write_g") (param i32)\n        local.get 0\n        global.set $global))\n    """\n)\n\nglobal_ = Global(store, Value.i32(7), mutable=True)\n\nimport_object = ImportObject()\nimport_object.register(\n    "env",\n    {\n        "global": global_\n    }\n)\n\ninstance = Instance(module, import_object)\n\nassert instance.exports.read_g() == 7\nglobal_.value = 153\nassert instance.exports.read_g() == 153\ninstance.exports.write_g(11)\nassert global_.value == 11\n
\n\n

etc.

\n"}, "wasmer.wasmer.ImportObject.__init__": {"fullname": "wasmer.wasmer.ImportObject.__init__", "modulename": "wasmer.wasmer", "qualname": "ImportObject.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ImportObject.contains_namespace": {"fullname": "wasmer.wasmer.ImportObject.contains_namespace", "modulename": "wasmer.wasmer", "qualname": "ImportObject.contains_namespace", "type": "function", "doc": "

Checks whether the import object contains a specific namespace.

\n\n

Example

\n\n
from wasmer import ImportObject\n\nimport_object = ImportObject()\n\nassert import_object.contains_namespace("foo") == False\n
\n", "parameters": ["self", "namespace_name"], "funcdef": "def"}, "wasmer.wasmer.ImportObject.to_dict": {"fullname": "wasmer.wasmer.ImportObject.to_dict", "modulename": "wasmer.wasmer", "qualname": "ImportObject.to_dict", "type": "function", "doc": "

Gets a Python dictionary from an ImportObject.

\n", "parameters": ["self"], "funcdef": "def"}, "wasmer.wasmer.ImportObject.register": {"fullname": "wasmer.wasmer.ImportObject.register", "modulename": "wasmer.wasmer", "qualname": "ImportObject.register", "type": "function", "doc": "

Registers a set of Function, Memory, Global or Table\nto a particular namespace.

\n\n

Example

\n\n
from wasmer import Store, ImportObject, Function, Memory, MemoryType\n\nstore = Store()\n\ndef sum(x: int, y: int) -> int:\n    return x + y\n\nimport_object = ImportObject()\nimport_object.register(\n    "env",\n    {\n        "sum": Function(store, sum),\n        "memory": Memory(store, MemoryType(minimum=1))\n    }\n)\n
\n", "parameters": ["self", "namespace_name", "namespace"], "funcdef": "def"}, "wasmer.wasmer.Instance": {"fullname": "wasmer.wasmer.Instance", "modulename": "wasmer.wasmer", "qualname": "Instance", "type": "class", "doc": "

A WebAssembly instance is a stateful, executable instance of a\nWebAssembly Module.

\n\n

Instance objects contain all the exported WebAssembly functions,\nmemories, tables and globals that allow interacting with\nWebAssembly.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#module-instances

\n\n

Example

\n\n

Example without an import object. The following creates a module\nwith a sum exported function that sum two integers.

\n\n
from wasmer import Store, Module, Instance\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (type (func (param i32 i32) (result i32)))\n      (func (type 0)\n        local.get 0\n        local.get 1\n        i32.add)\n      (export "sum" (func 0)))\n    """\n)\ninstance = Instance(module)\n\nassert instance.exports.sum(1, 2) == 3\n
\n\n

Example with an import object. The following creates a module that\n(i) imports a sum function from the math namespace, and (ii)\nexports a add_one function that adds 1 to any given integer (by\nusing the math.sum function).

\n\n
from wasmer import Store, Module, Instance, Function\nfrom collections import defaultdict\n\n# Let's define the `sum` function!\ndef sum(x: int, y: int) -> int:\n    return x + y\n\n# Let's build a store, as usual.\nstore = Store()\n\n# Let's compile the WebAssembly module.\nmodule = Module(\n    store,\n    """\n    (module\n      (import "math" "sum" (func $sum (param i32 i32) (result i32)))\n      (func (export "add_one") (param i32) (result i32)\n        local.get 0\n        i32.const 1\n        call $sum))\n    """\n)\n\n# Now, let's create an import object, and register the `sum`\n# function.\nimport_object = defaultdict(dict)\nimport_object["math"]["sum"] = Function(store, sum)\n\n# Here we go, let's instantiate the module with the import object!\ninstance = Instance(module, import_object)\n\n# Let's test it!\nassert instance.exports.add_one(41) == 42\n
\n"}, "wasmer.wasmer.Instance.__init__": {"fullname": "wasmer.wasmer.Instance.__init__", "modulename": "wasmer.wasmer", "qualname": "Instance.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Instance.exports": {"fullname": "wasmer.wasmer.Instance.exports", "modulename": "wasmer.wasmer", "qualname": "Instance.exports", "type": "variable", "doc": "

The exports of the instance, as an object of kind Exports.

\n\n

Example

\n\n

See the Exports class.

\n"}, "wasmer.wasmer.Buffer": {"fullname": "wasmer.wasmer.Buffer", "modulename": "wasmer.wasmer", "qualname": "Buffer", "type": "class", "doc": "

Represents a read-and-write buffer over data of a memory.

\n\n

It is built by the Memory.buffer getter.

\n\n

It implements the Python buffer protocol, so it\nis possible to read and write bytes with bytes,\nbytearray or memoryview.

\n\n

Example

\n\n
from wasmer import Memory, MemoryType, Store\n\nstore = Store()\nmemory = Memory(store, MemoryType(minimum=128))\n\n# Let's write data with a `Int8Array` view for example.\nint8 = memory.int8_view()\nint8[0] = 1\nint8[1] = 2\nint8[2] = 3\nint8[3] = 0x57\nint8[4] = 0x61\nint8[5] = 0x73\nint8[6] = 0x6d\nint8[7] = 0x65\nint8[8] = 0x72\n\n# Let's read data with a `Buffer` for example.\nbyte_array = bytearray(memory.buffer)\n\nassert byte_array[0:3] == b'\\x01\\x02\\x03'\nassert byte_array[3:9].decode() == 'Wasmer'\n
\n"}, "wasmer.wasmer.Buffer.__init__": {"fullname": "wasmer.wasmer.Buffer.__init__", "modulename": "wasmer.wasmer", "qualname": "Buffer.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Float32Array": {"fullname": "wasmer.wasmer.Float32Array", "modulename": "wasmer.wasmer", "qualname": "Float32Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Float32Array.__init__": {"fullname": "wasmer.wasmer.Float32Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Float32Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Float32Array.bytes_per_element": {"fullname": "wasmer.wasmer.Float32Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Float32Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Float64Array": {"fullname": "wasmer.wasmer.Float64Array", "modulename": "wasmer.wasmer", "qualname": "Float64Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Float64Array.__init__": {"fullname": "wasmer.wasmer.Float64Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Float64Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Float64Array.bytes_per_element": {"fullname": "wasmer.wasmer.Float64Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Float64Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int16Array": {"fullname": "wasmer.wasmer.Int16Array", "modulename": "wasmer.wasmer", "qualname": "Int16Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int16Array.__init__": {"fullname": "wasmer.wasmer.Int16Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int16Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int16Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int16Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int16Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int32Array": {"fullname": "wasmer.wasmer.Int32Array", "modulename": "wasmer.wasmer", "qualname": "Int32Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int32Array.__init__": {"fullname": "wasmer.wasmer.Int32Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int32Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int32Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int32Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int32Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int64Array": {"fullname": "wasmer.wasmer.Int64Array", "modulename": "wasmer.wasmer", "qualname": "Int64Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int64Array.__init__": {"fullname": "wasmer.wasmer.Int64Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int64Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int64Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int64Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int64Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Int8Array": {"fullname": "wasmer.wasmer.Int8Array", "modulename": "wasmer.wasmer", "qualname": "Int8Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Int8Array.__init__": {"fullname": "wasmer.wasmer.Int8Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Int8Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Int8Array.bytes_per_element": {"fullname": "wasmer.wasmer.Int8Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Int8Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint16Array": {"fullname": "wasmer.wasmer.Uint16Array", "modulename": "wasmer.wasmer", "qualname": "Uint16Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint16Array.__init__": {"fullname": "wasmer.wasmer.Uint16Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint16Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint16Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint16Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint32Array": {"fullname": "wasmer.wasmer.Uint32Array", "modulename": "wasmer.wasmer", "qualname": "Uint32Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint32Array.__init__": {"fullname": "wasmer.wasmer.Uint32Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint32Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint32Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint32Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint64Array": {"fullname": "wasmer.wasmer.Uint64Array", "modulename": "wasmer.wasmer", "qualname": "Uint64Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint64Array.__init__": {"fullname": "wasmer.wasmer.Uint64Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint64Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint64Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint64Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Uint8Array": {"fullname": "wasmer.wasmer.Uint8Array", "modulename": "wasmer.wasmer", "qualname": "Uint8Array", "type": "class", "doc": "

Represents a read-and-write view over the data of a\nmemory.

\n\n

It is built by the Memory.uint8_view and siblings getters.

\n\n

It implements the Python mapping\nprotocol, so it is possible to read and\nwrite bytes with a standard Python API.

\n\n

Example

\n\n

This is an example for the Uint8Array view, but it is\nthe same for its siblings!

\n\n
from wasmer import Store, Module, Instance, Uint8Array\n\nmodule = Module(Store(), open('tests/tests.wasm', 'rb').read())\ninstance = Instance(module)\nexports = instance.exports\n\npointer = exports.string()\nmemory = exports.memory.uint8_view(offset=pointer)\nnth = 0\nstring = ''\n\nwhile (0 != memory[nth]):\n    string += chr(memory[nth])\n    nth += 1\n\nassert string == 'Hello, World!'\n
\n"}, "wasmer.wasmer.Uint8Array.__init__": {"fullname": "wasmer.wasmer.Uint8Array.__init__", "modulename": "wasmer.wasmer", "qualname": "Uint8Array.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"fullname": "wasmer.wasmer.Uint8Array.bytes_per_element", "modulename": "wasmer.wasmer", "qualname": "Uint8Array.bytes_per_element", "type": "variable", "doc": "

Gets the number of bytes per element.

\n"}, "wasmer.wasmer.Module": {"fullname": "wasmer.wasmer.Module", "modulename": "wasmer.wasmer", "qualname": "Module", "type": "class", "doc": "

A WebAssembly module contains stateless WebAssembly code that has\nalready been compiled and can be instantiated multiple times.

\n\n

Creates a new WebAssembly Module given the configuration\nin the store.

\n\n

If the provided bytes are not WebAssembly-like (start with\nb\"\\0asm\"), this function will try to to convert the bytes\nassuming they correspond to the WebAssembly text format.

\n\n

Security

\n\n

Before the code is compiled, it will be validated using the store\nfeatures.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nstore = Store()\n\n# Let's compile WebAssembly from bytes.\nmodule = Module(store, open('tests/tests.wasm', 'rb').read())\n\n# Let's compile WebAssembly from WAT.\nmodule = Module(store, '(module)')\n
\n"}, "wasmer.wasmer.Module.__init__": {"fullname": "wasmer.wasmer.Module.__init__", "modulename": "wasmer.wasmer", "qualname": "Module.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Module.validate": {"fullname": "wasmer.wasmer.Module.validate", "modulename": "wasmer.wasmer", "qualname": "Module.validate", "type": "function", "doc": "

Validates a new WebAssembly Module given the configuration\nin the Store.

\n\n

This validation is normally pretty fast and checks the enabled\nWebAssembly features in the Store engine to assure deterministic\nvalidation of the Module.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nassert Module.validate(Store(), wasm_bytes)\n
\n", "parameters": ["bytes"], "funcdef": "def"}, "wasmer.wasmer.Module.custom_sections": {"fullname": "wasmer.wasmer.Module.custom_sections", "modulename": "wasmer.wasmer", "qualname": "Module.custom_sections", "type": "function", "doc": "

Get the custom sections of the module given a name.

\n\n

Important

\n\n

Following the WebAssembly specification, one name can have\nmultiple custom sections. That's why a list of bytes is\nreturned rather than bytes.

\n\n

Consequently, the empty list represents the absence of a\ncustom section for the given name.

\n\n

Examples

\n\n
from wasmer import Store, Module\n\nmodule = Module(Store(), open('tests/custom_sections.wasm', 'rb').read())\n\nassert module.custom_sections('easter_egg') == [b'Wasmer']\nassert module.custom_sections('hello') == [b'World!']\nassert module.custom_sections('foo') == []\n
\n", "parameters": ["self", "name"], "funcdef": "def"}, "wasmer.wasmer.Module.serialize": {"fullname": "wasmer.wasmer.Module.serialize", "modulename": "wasmer.wasmer", "qualname": "Module.serialize", "type": "function", "doc": "

Serializes a module into a binary representation that the\nEngine can later process via Module.deserialize.

\n\n

Examples

\n\n
from wasmer import Store, Module\n\nstore = Store()\nmodule = Module(Store(), '(module)')\nserialized_module = module.serialize()\n\nassert type(serialized_module) == bytes\n
\n", "parameters": ["self"], "funcdef": "def"}, "wasmer.wasmer.Module.deserialize": {"fullname": "wasmer.wasmer.Module.deserialize", "modulename": "wasmer.wasmer", "qualname": "Module.deserialize", "type": "function", "doc": "

Deserializes a serialized module binary into a Module.

\n\n

Note: the module has to be serialized before with the\nserialize method.

\n\n

Safety

\n\n

This function is inherently unsafe as the provided bytes:

\n\n
    \n
  1. Are going to be deserialized directly into Rust objects.
  2. \n
  3. Contains the function assembly bodies and, if intercepted,\na malicious actor could inject code into executable\nmemory.
  4. \n
\n\n

And as such, the deserialize method is unsafe.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nstore = Store()\nmodule = Module(\n    store,\n    """\n    (module\n      (func (export "function") (param i32 i64)))\n    """\n)\nserialized_module = module.serialize()\n\ndel module\n\nmodule = Module.deserialize(store, serialized_module)\n\ndel serialized_module\n\nassert isinstance(module, Module)\n
\n", "parameters": ["self", "bytes"], "funcdef": "def"}, "wasmer.wasmer.Module.exports": {"fullname": "wasmer.wasmer.Module.exports", "modulename": "wasmer.wasmer", "qualname": "Module.exports", "type": "variable", "doc": "

Returns a list of ExportType objects, which represents all\nthe exports of this module.

\n\n

The order of the exports is guaranteed to be the same as in\nthe WebAssembly bytecode.

\n\n

Example

\n\n

See the ExportType class to learn more.

\n"}, "wasmer.wasmer.Module.imports": {"fullname": "wasmer.wasmer.Module.imports", "modulename": "wasmer.wasmer", "qualname": "Module.imports", "type": "variable", "doc": "

Returns a list of ImportType objects, which represents all\nthe imports of this module.

\n\n

The order of the imports is guaranteed to be the same as in\nthe WebAssembly bytecode.

\n\n

Example

\n\n

See the ImportType class to learn more.

\n"}, "wasmer.wasmer.Module.name": {"fullname": "wasmer.wasmer.Module.name", "modulename": "wasmer.wasmer", "qualname": "Module.name", "type": "variable", "doc": "

Get or set the current name of the module.

\n\n

This name is normally set in the WebAssembly bytecode by some\ncompilers, but can be also overwritten.

\n\n

Not all modules have a name.

\n\n

Example

\n\n
from wasmer import Store, Module\n\nstore = Store()\n\n# Module with an existing name.\nassert Module(store, '(module $moduleName)').name == 'moduleName'\n\n# Module with no name.\nassert Module(store, '(module)').name == None\n\n# Change the module's name.\nmodule = Module(store, '(module $moduleName)')\nmodule.name = 'hello'\nassert module.name == 'hello'\n
\n"}, "wasmer.wasmer.Store": {"fullname": "wasmer.wasmer.Store", "modulename": "wasmer.wasmer", "qualname": "Store", "type": "class", "doc": "

The store represents all global state that can be manipulated by\nWebAssembly programs. It consists of the runtime representation of\nall instances of functions, tables, memories, and globals that\nhave been allocated during the lifetime of the abstract machine.

\n\n

The Store holds the engine (that is \u2014amongst many things\u2014 used\nto compile the WebAssembly bytes into a valid module artifact), in\naddition to the Tunables (that are used to create the memories,\ntables and globals). The engine comes from the wasmer.engine\nmodule.

\n\n

Specification: https://webassembly.github.io/spec/core/exec/runtime.html#store

\n\n

Read the documentation of the engine submodule to learn more.

\n\n

Examples

\n\n

Use the Universal engine with no compiler (headless mode):

\n\n
from wasmer import engine, Store\n\nstore = Store(engine.Universal())\n
\n\n

Use the Universal engine with the LLVM compiler:

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_llvm import Compiler\n\nstore = Store(engine.Universal(Compiler))\n
\n\n

If the store is built without an engine, the Universal engine will be\nused, with the first compiler found in this order:\ncompiler_compiler_cranelift, compiler_compiler_llvm,\ncompiler_compiler_singlepass, otherwise it will run in headless\nmode.

\n"}, "wasmer.wasmer.Store.__init__": {"fullname": "wasmer.wasmer.Store.__init__", "modulename": "wasmer.wasmer", "qualname": "Store.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Store.compiler_name": {"fullname": "wasmer.wasmer.Store.compiler_name", "modulename": "wasmer.wasmer", "qualname": "Store.compiler_name", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Store.engine_name": {"fullname": "wasmer.wasmer.Store.engine_name", "modulename": "wasmer.wasmer", "qualname": "Store.engine_name", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.ExportType": {"fullname": "wasmer.wasmer.ExportType", "modulename": "wasmer.wasmer", "qualname": "ExportType", "type": "class", "doc": "

Represents the type of a module's export (not to be confused with\nan export of an instance). It is usually built from the\nModule.exports getter.

\n\n

Examples

\n\n
from wasmer import Store, Module, ExportType, FunctionType, GlobalType, TableType, MemoryType, Type\n\nmodule = Module(\n    Store(),\n    """\n    (module\n      (func (export "function") (param i32 i64))\n      (global (export "global") i32 (i32.const 7))\n      (table (export "table") 0 funcref)\n      (memory (export "memory") 1))\n    """\n)\n\nexports = module.exports\n\nassert isinstance(exports[0], ExportType)\n\nassert exports[0].name == "function"\nassert isinstance(exports[0].type, FunctionType)\nassert exports[0].type.params == [Type.I32, Type.I64]\nassert exports[0].type.results == []\n\nassert exports[1].name == "global"\nassert isinstance(exports[1].type, GlobalType)\nassert exports[1].type.type == Type.I32\nassert exports[1].type.mutable == False\n\nassert exports[2].name == "table"\nassert isinstance(exports[2].type, TableType)\nassert exports[2].type.type == Type.FUNC_REF\nassert exports[2].type.minimum == 0\nassert exports[2].type.maximum == None\n\nassert exports[3].name == "memory"\nassert isinstance(exports[3].type, MemoryType)\nassert exports[3].type.minimum == 1\nassert exports[3].type.maximum == None\nassert exports[3].type.shared == False\n
\n"}, "wasmer.wasmer.ExportType.__init__": {"fullname": "wasmer.wasmer.ExportType.__init__", "modulename": "wasmer.wasmer", "qualname": "ExportType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ExportType.type": {"fullname": "wasmer.wasmer.ExportType.type", "modulename": "wasmer.wasmer", "qualname": "ExportType.type", "type": "variable", "doc": "

The type of the export. Possible values are: FunctionType,\nGlobalType, TableType and MemoryType.

\n"}, "wasmer.wasmer.ExportType.name": {"fullname": "wasmer.wasmer.ExportType.name", "modulename": "wasmer.wasmer", "qualname": "ExportType.name", "type": "variable", "doc": "

The name of the export.

\n"}, "wasmer.wasmer.FunctionType": {"fullname": "wasmer.wasmer.FunctionType", "modulename": "wasmer.wasmer", "qualname": "FunctionType", "type": "class", "doc": "

Represents the signature of a function that is either implemented\nin WebAssembly module or exposed to WebAssembly by the host.

\n\n

WebAssembly functions can have 0 or more parameters and results.

\n\n

Example

\n\n
from wasmer import FunctionType, Type\n\n# Type: (i32, i32) -> i32\nfunction_type = FunctionType(\n    params=[Type.I32, Type.I32],\n    results=[Type.I32]\n)\n
\n"}, "wasmer.wasmer.FunctionType.__init__": {"fullname": "wasmer.wasmer.FunctionType.__init__", "modulename": "wasmer.wasmer", "qualname": "FunctionType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.FunctionType.params": {"fullname": "wasmer.wasmer.FunctionType.params", "modulename": "wasmer.wasmer", "qualname": "FunctionType.params", "type": "variable", "doc": "

Parameters, i.e. inputs, of the function.

\n"}, "wasmer.wasmer.FunctionType.results": {"fullname": "wasmer.wasmer.FunctionType.results", "modulename": "wasmer.wasmer", "qualname": "FunctionType.results", "type": "variable", "doc": "

Results, i.e. outputs, of the function.

\n"}, "wasmer.wasmer.GlobalType": {"fullname": "wasmer.wasmer.GlobalType", "modulename": "wasmer.wasmer", "qualname": "GlobalType", "type": "class", "doc": "

A descriptor for a WebAssembly global.

\n\n

Example

\n\n
from wasmer import GlobalType, Type\n\n# Describes a global of kind `i32` which is immutable.\nglobal_type = GlobalType(Type.I32, mutable=False)\n
\n"}, "wasmer.wasmer.GlobalType.__init__": {"fullname": "wasmer.wasmer.GlobalType.__init__", "modulename": "wasmer.wasmer", "qualname": "GlobalType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.GlobalType.type": {"fullname": "wasmer.wasmer.GlobalType.type", "modulename": "wasmer.wasmer", "qualname": "GlobalType.type", "type": "variable", "doc": "

The type of the value stored in the global.

\n"}, "wasmer.wasmer.GlobalType.mutable": {"fullname": "wasmer.wasmer.GlobalType.mutable", "modulename": "wasmer.wasmer", "qualname": "GlobalType.mutable", "type": "variable", "doc": "

A flag indicating whether the value may change at runtime.

\n"}, "wasmer.wasmer.ImportType": {"fullname": "wasmer.wasmer.ImportType", "modulename": "wasmer.wasmer", "qualname": "ImportType", "type": "class", "doc": "

Represents the type of a module's import. It is usually built from\nthe Module.imports getter.

\n\n

Example

\n\n
from wasmer import Store, Module, ImportType, FunctionType, GlobalType, TableType, MemoryType, Type\n\nmodule = Module(\n    Store(),\n    """\n    (module\n    (import "ns" "function" (func))\n    (import "ns" "global" (global f32))\n    (import "ns" "table" (table 1 2 anyfunc))\n    (import "ns" "memory" (memory 3 4)))\n    """\n)\nimports = module.imports\n\nassert isinstance(imports[0], ImportType)\n\nassert imports[0].module == "ns"\nassert imports[0].name == "function"\nassert isinstance(imports[0].type, FunctionType)\nassert imports[0].type.params == []\nassert imports[0].type.results == []\n\nassert imports[1].module == "ns"\nassert imports[1].name == "global"\nassert isinstance(imports[1].type, GlobalType)\nassert imports[1].type.type == Type.F32\nassert imports[1].type.mutable == False\n\nassert imports[2].module == "ns"\nassert imports[2].name == "table"\nassert isinstance(imports[2].type, TableType)\nassert imports[2].type.type == Type.FUNC_REF\nassert imports[2].type.minimum == 1\nassert imports[2].type.maximum == 2\n\nassert imports[3].module == "ns"\nassert imports[3].name == "memory"\nassert isinstance(imports[3].type, MemoryType)\nassert imports[3].type.minimum == 3\nassert imports[3].type.maximum == 4\nassert imports[3].type.shared == False\n
\n"}, "wasmer.wasmer.ImportType.__init__": {"fullname": "wasmer.wasmer.ImportType.__init__", "modulename": "wasmer.wasmer", "qualname": "ImportType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.ImportType.type": {"fullname": "wasmer.wasmer.ImportType.type", "modulename": "wasmer.wasmer", "qualname": "ImportType.type", "type": "variable", "doc": "

The type of the import. Possible values are: FunctionType,\nGlobalType, TableType and MemoryType.

\n"}, "wasmer.wasmer.ImportType.module": {"fullname": "wasmer.wasmer.ImportType.module", "modulename": "wasmer.wasmer", "qualname": "ImportType.module", "type": "variable", "doc": "

The namespace name (also known as module name).

\n"}, "wasmer.wasmer.ImportType.name": {"fullname": "wasmer.wasmer.ImportType.name", "modulename": "wasmer.wasmer", "qualname": "ImportType.name", "type": "variable", "doc": "

The name of the import.

\n"}, "wasmer.wasmer.MemoryType": {"fullname": "wasmer.wasmer.MemoryType", "modulename": "wasmer.wasmer", "qualname": "MemoryType", "type": "class", "doc": "

A descriptor for a WebAssembly memory type.

\n\n

Memories are described in units of pages (64Kb) and represent\ncontiguous chunks of addressable memory.

\n\n

Example

\n\n
from wasmer import MemoryType\n\nmemory_type = MemoryType(\n    minimum=1,\n    shared=True\n)\n
\n"}, "wasmer.wasmer.MemoryType.__init__": {"fullname": "wasmer.wasmer.MemoryType.__init__", "modulename": "wasmer.wasmer", "qualname": "MemoryType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.MemoryType.maximum": {"fullname": "wasmer.wasmer.MemoryType.maximum", "modulename": "wasmer.wasmer", "qualname": "MemoryType.maximum", "type": "variable", "doc": "

The maximum number of pages in the memory. It is optional.

\n"}, "wasmer.wasmer.MemoryType.minimum": {"fullname": "wasmer.wasmer.MemoryType.minimum", "modulename": "wasmer.wasmer", "qualname": "MemoryType.minimum", "type": "variable", "doc": "

The minimum number of pages in the memory.

\n"}, "wasmer.wasmer.MemoryType.shared": {"fullname": "wasmer.wasmer.MemoryType.shared", "modulename": "wasmer.wasmer", "qualname": "MemoryType.shared", "type": "variable", "doc": "

Whether the memory may be shared between multiple threads.

\n"}, "wasmer.wasmer.TableType": {"fullname": "wasmer.wasmer.TableType", "modulename": "wasmer.wasmer", "qualname": "TableType", "type": "class", "doc": "

A descriptor for a table in a WebAssembly module.

\n\n

Tables are contiguous chunks of a specific element, typically a\nfuncref or externref. The most common use for tables is a\nfunction table through which call_indirect can invoke other\nfunctions.

\n\n

Example

\n\n
from wasmer import TableType, Type\n\ntable_type = TableType(Type.I32, minimum=7, maximum=42)\n
\n"}, "wasmer.wasmer.TableType.__init__": {"fullname": "wasmer.wasmer.TableType.__init__", "modulename": "wasmer.wasmer", "qualname": "TableType.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.TableType.minimum": {"fullname": "wasmer.wasmer.TableType.minimum", "modulename": "wasmer.wasmer", "qualname": "TableType.minimum", "type": "variable", "doc": "

The minimum number of elements in the table.

\n"}, "wasmer.wasmer.TableType.type": {"fullname": "wasmer.wasmer.TableType.type", "modulename": "wasmer.wasmer", "qualname": "TableType.type", "type": "variable", "doc": "

The type of data stored in elements of the table.

\n"}, "wasmer.wasmer.TableType.maximum": {"fullname": "wasmer.wasmer.TableType.maximum", "modulename": "wasmer.wasmer", "qualname": "TableType.maximum", "type": "variable", "doc": "

The maximum number of elements in the table.

\n"}, "wasmer.wasmer.Value": {"fullname": "wasmer.wasmer.Value", "modulename": "wasmer.wasmer", "qualname": "Value", "type": "class", "doc": "

Represents a WebAssembly value of a specific type.

\n\n

Most of the time, the types for WebAssembly values will be\ninferred. When it's not possible, the Value class is necessary.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.i32(42)\n
\n"}, "wasmer.wasmer.Value.__init__": {"fullname": "wasmer.wasmer.Value.__init__", "modulename": "wasmer.wasmer", "qualname": "Value.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer.wasmer.Value.i32": {"fullname": "wasmer.wasmer.Value.i32", "modulename": "wasmer.wasmer", "qualname": "Value.i32", "type": "function", "doc": "

Build a WebAssembly i32 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.i32(42)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.i64": {"fullname": "wasmer.wasmer.Value.i64", "modulename": "wasmer.wasmer", "qualname": "Value.i64", "type": "function", "doc": "

Build a WebAssembly i64 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.i64(42)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.f32": {"fullname": "wasmer.wasmer.Value.f32", "modulename": "wasmer.wasmer", "qualname": "Value.f32", "type": "function", "doc": "

Build a WebAssembly f32 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.f32(4.2)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.f64": {"fullname": "wasmer.wasmer.Value.f64", "modulename": "wasmer.wasmer", "qualname": "Value.f64", "type": "function", "doc": "

Build a WebAssembly f64 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.f64(4.2)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Value.v128": {"fullname": "wasmer.wasmer.Value.v128", "modulename": "wasmer.wasmer", "qualname": "Value.v128", "type": "function", "doc": "

Build a WebAssembly v128 value.

\n\n

Example

\n\n
from wasmer import Value\n\nvalue = Value.v128(42)\n
\n", "parameters": ["value"], "funcdef": "def"}, "wasmer.wasmer.Type": {"fullname": "wasmer.wasmer.Type", "modulename": "wasmer.wasmer", "qualname": "Type", "type": "class", "doc": "

An enumeration.

\n"}, "wasmer.wasmer.Type.I32": {"fullname": "wasmer.wasmer.Type.I32", "modulename": "wasmer.wasmer", "qualname": "Type.I32", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.I64": {"fullname": "wasmer.wasmer.Type.I64", "modulename": "wasmer.wasmer", "qualname": "Type.I64", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.F32": {"fullname": "wasmer.wasmer.Type.F32", "modulename": "wasmer.wasmer", "qualname": "Type.F32", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.F64": {"fullname": "wasmer.wasmer.Type.F64", "modulename": "wasmer.wasmer", "qualname": "Type.F64", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.V128": {"fullname": "wasmer.wasmer.Type.V128", "modulename": "wasmer.wasmer", "qualname": "Type.V128", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.EXTERN_REF": {"fullname": "wasmer.wasmer.Type.EXTERN_REF", "modulename": "wasmer.wasmer", "qualname": "Type.EXTERN_REF", "type": "variable", "doc": "

\n"}, "wasmer.wasmer.Type.FUNC_REF": {"fullname": "wasmer.wasmer.Type.FUNC_REF", "modulename": "wasmer.wasmer", "qualname": "Type.FUNC_REF", "type": "variable", "doc": "

\n"}, "wasmer_compiler_cranelift": {"fullname": "wasmer_compiler_cranelift", "modulename": "wasmer_compiler_cranelift", "qualname": "", "type": "module", "doc": "

The Cranelift compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "", "type": "module", "doc": "

The Cranelift compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "Compiler", "type": "class", "doc": "

The Cranelift compiler.

\n\n

Example

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_cranelift import Compiler\n\nstore = Store(engine.JIT(Compiler))\n
\n"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "Compiler.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"fullname": "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler", "modulename": "wasmer_compiler_cranelift.wasmer_compiler_cranelift", "qualname": "Compiler.into_opaque_compiler", "type": "function", "doc": "

Please don't use it. Internal use only.

\n", "parameters": ["unknown"], "funcdef": "def"}, "wasmer_compiler_llvm": {"fullname": "wasmer_compiler_llvm", "modulename": "wasmer_compiler_llvm", "qualname": "", "type": "module", "doc": "

The LLVM compiler, designed for the wasmer Python package (a\nWebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "", "type": "module", "doc": "

The LLVM compiler, designed for the wasmer Python package (a\nWebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "Compiler", "type": "class", "doc": "

The LLVM compiler.

\n\n

Example

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_cranelift import Compiler\n\nstore = Store(engine.JIT(Compiler))\n
\n"}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "Compiler.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"fullname": "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler", "modulename": "wasmer_compiler_llvm.wasmer_compiler_llvm", "qualname": "Compiler.into_opaque_compiler", "type": "function", "doc": "

Please don't use it. Internal use only.

\n", "parameters": ["unknown"], "funcdef": "def"}, "wasmer_compiler_singlepass": {"fullname": "wasmer_compiler_singlepass", "modulename": "wasmer_compiler_singlepass", "qualname": "", "type": "module", "doc": "

The Singlepass compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "", "type": "module", "doc": "

The Singlepass compiler, designed for the wasmer Python package\n(a WebAssembly runtime).

\n\n

Please check the documentation of wasmer.engine to learn more.

\n"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "Compiler", "type": "class", "doc": "

The Singlepass compiler.

\n\n

Example

\n\n
from wasmer import engine, Store\nfrom wasmer_compiler_singlepass import Compiler\n\nstore = Store(engine.JIT(Compiler))\n
\n"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "Compiler.__init__", "type": "function", "doc": "

\n", "parameters": [], "funcdef": "def"}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"fullname": "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler", "modulename": "wasmer_compiler_singlepass.wasmer_compiler_singlepass", "qualname": "Compiler.into_opaque_compiler", "type": "function", "doc": "

Please don't use it. Internal use only.

\n", "parameters": ["unknown"], "funcdef": "def"}}, "docInfo": {"wasmer": {"qualname": 0, "fullname": 1, "doc": 154}, "wasmer.wasmer": {"qualname": 0, "fullname": 2, "doc": 154}, "wasmer.wasmer.wat2wasm": {"qualname": 1, "fullname": 3, "doc": 22}, "wasmer.wasmer.wasm2wat": {"qualname": 1, "fullname": 3, "doc": 21}, "wasmer.wasmer.Exports": {"qualname": 1, "fullname": 3, "doc": 102}, "wasmer.wasmer.Exports.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ExportsIterator": {"qualname": 1, "fullname": 3, "doc": 76}, "wasmer.wasmer.ExportsIterator.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Function": {"qualname": 1, "fullname": 3, "doc": 221}, "wasmer.wasmer.Function.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Function.type": {"qualname": 2, "fullname": 4, "doc": 71}, "wasmer.wasmer.Global": {"qualname": 1, "fullname": 3, "doc": 76}, "wasmer.wasmer.Global.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Global.type": {"qualname": 2, "fullname": 4, "doc": 35}, "wasmer.wasmer.Global.value": {"qualname": 2, "fullname": 4, "doc": 32}, "wasmer.wasmer.Global.mutable": {"qualname": 2, "fullname": 4, "doc": 24}, "wasmer.wasmer.Memory": {"qualname": 1, "fullname": 3, "doc": 109}, "wasmer.wasmer.Memory.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Memory.grow": {"qualname": 2, "fullname": 4, "doc": 33}, "wasmer.wasmer.Memory.uint8_view": {"qualname": 2, "fullname": 4, "doc": 39}, "wasmer.wasmer.Memory.int8_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.uint16_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.int16_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.uint32_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.int32_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.uint64_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.int64_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.float32_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.float64_view": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Memory.type": {"qualname": 2, "fullname": 4, "doc": 46}, "wasmer.wasmer.Memory.data_size": {"qualname": 2, "fullname": 4, "doc": 24}, "wasmer.wasmer.Memory.size": {"qualname": 2, "fullname": 4, "doc": 24}, "wasmer.wasmer.Memory.buffer": {"qualname": 2, "fullname": 4, "doc": 34}, "wasmer.wasmer.Table": {"qualname": 1, "fullname": 3, "doc": 29}, "wasmer.wasmer.Table.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Table.type": {"qualname": 2, "fullname": 4, "doc": 50}, "wasmer.wasmer.Table.size": {"qualname": 2, "fullname": 4, "doc": 35}, "wasmer.wasmer.ImportObject": {"qualname": 1, "fullname": 3, "doc": 338}, "wasmer.wasmer.ImportObject.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ImportObject.contains_namespace": {"qualname": 2, "fullname": 4, "doc": 20}, "wasmer.wasmer.ImportObject.to_dict": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.ImportObject.register": {"qualname": 2, "fullname": 4, "doc": 50}, "wasmer.wasmer.Instance": {"qualname": 1, "fullname": 3, "doc": 229}, "wasmer.wasmer.Instance.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Instance.exports": {"qualname": 2, "fullname": 4, "doc": 9}, "wasmer.wasmer.Buffer": {"qualname": 1, "fullname": 3, "doc": 99}, "wasmer.wasmer.Buffer.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Float32Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Float32Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Float32Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Float64Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Float64Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Float64Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int16Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int16Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int16Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int32Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int32Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int32Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int64Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int64Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int64Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Int8Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Int8Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Int8Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint16Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint16Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint32Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint32Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint64Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint64Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Uint8Array": {"qualname": 1, "fullname": 3, "doc": 82}, "wasmer.wasmer.Uint8Array.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.Module": {"qualname": 1, "fullname": 3, "doc": 75}, "wasmer.wasmer.Module.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Module.validate": {"qualname": 2, "fullname": 4, "doc": 31}, "wasmer.wasmer.Module.custom_sections": {"qualname": 2, "fullname": 4, "doc": 71}, "wasmer.wasmer.Module.serialize": {"qualname": 2, "fullname": 4, "doc": 30}, "wasmer.wasmer.Module.deserialize": {"qualname": 2, "fullname": 4, "doc": 78}, "wasmer.wasmer.Module.exports": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Module.imports": {"qualname": 2, "fullname": 4, "doc": 19}, "wasmer.wasmer.Module.name": {"qualname": 2, "fullname": 4, "doc": 67}, "wasmer.wasmer.Store": {"qualname": 1, "fullname": 3, "doc": 106}, "wasmer.wasmer.Store.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Store.compiler_name": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Store.engine_name": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ExportType": {"qualname": 1, "fullname": 3, "doc": 187}, "wasmer.wasmer.ExportType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ExportType.type": {"qualname": 2, "fullname": 4, "doc": 8}, "wasmer.wasmer.ExportType.name": {"qualname": 2, "fullname": 4, "doc": 2}, "wasmer.wasmer.FunctionType": {"qualname": 1, "fullname": 3, "doc": 35}, "wasmer.wasmer.FunctionType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.FunctionType.params": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.FunctionType.results": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.GlobalType": {"qualname": 1, "fullname": 3, "doc": 19}, "wasmer.wasmer.GlobalType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.GlobalType.type": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.GlobalType.mutable": {"qualname": 2, "fullname": 4, "doc": 6}, "wasmer.wasmer.ImportType": {"qualname": 1, "fullname": 3, "doc": 216}, "wasmer.wasmer.ImportType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.ImportType.type": {"qualname": 2, "fullname": 4, "doc": 8}, "wasmer.wasmer.ImportType.module": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.ImportType.name": {"qualname": 2, "fullname": 4, "doc": 2}, "wasmer.wasmer.MemoryType": {"qualname": 1, "fullname": 3, "doc": 24}, "wasmer.wasmer.MemoryType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.MemoryType.maximum": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.MemoryType.minimum": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.MemoryType.shared": {"qualname": 2, "fullname": 4, "doc": 6}, "wasmer.wasmer.TableType": {"qualname": 1, "fullname": 3, "doc": 34}, "wasmer.wasmer.TableType.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.TableType.minimum": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.TableType.type": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer.wasmer.TableType.maximum": {"qualname": 2, "fullname": 4, "doc": 4}, "wasmer.wasmer.Value": {"qualname": 1, "fullname": 3, "doc": 23}, "wasmer.wasmer.Value.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Value.i32": {"qualname": 2, "fullname": 4, "doc": 12}, "wasmer.wasmer.Value.i64": {"qualname": 2, "fullname": 4, "doc": 12}, "wasmer.wasmer.Value.f32": {"qualname": 2, "fullname": 4, "doc": 13}, "wasmer.wasmer.Value.f64": {"qualname": 2, "fullname": 4, "doc": 13}, "wasmer.wasmer.Value.v128": {"qualname": 2, "fullname": 4, "doc": 12}, "wasmer.wasmer.Type": {"qualname": 1, "fullname": 3, "doc": 1}, "wasmer.wasmer.Type.I32": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.I64": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.F32": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.F64": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.V128": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.EXTERN_REF": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer.wasmer.Type.FUNC_REF": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_cranelift": {"qualname": 0, "fullname": 1, "doc": 15}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"qualname": 0, "fullname": 2, "doc": 15}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"qualname": 1, "fullname": 3, "doc": 15}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer_compiler_llvm": {"qualname": 0, "fullname": 1, "doc": 15}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"qualname": 0, "fullname": 2, "doc": 15}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"qualname": 1, "fullname": 3, "doc": 15}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"qualname": 2, "fullname": 4, "doc": 5}, "wasmer_compiler_singlepass": {"qualname": 0, "fullname": 1, "doc": 15}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"qualname": 0, "fullname": 2, "doc": 15}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"qualname": 1, "fullname": 3, "doc": 15}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"qualname": 2, "fullname": 4, "doc": 0}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"qualname": 2, "fullname": 4, "doc": 5}}, "length": 147, "save": true}, "index": {"qualname": {"root": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}}, "docs": {}, "df": 0}, "s": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.engine_name": {"tf": 1}}, "df": 1}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}}, "df": 31}}}}}}}}, "f": {"3": {"2": {"docs": {"wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}, "wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 4}}}}}}}, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.Type": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}, "wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}, "wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.to_dict": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}}, "v": {"1": {"2": {"8": {"docs": {"wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}}, "df": 17}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 5}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 10}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}}}}, "i": {"3": {"2": {"docs": {"wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 5}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.Store.compiler_name": {"tf": 1}, "wasmer.wasmer.Store.engine_name": {"tf": 1}}, "df": 4}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}}, "df": 3}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 10}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.compiler_name": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 1}}}}}}}, "fullname": {"root": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.wat2wasm": {"tf": 1.4142135623730951}, "wasmer.wasmer.wasm2wat": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.validate": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.imports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store.compiler_name": {"tf": 1.4142135623730951}, "wasmer.wasmer.Store.engine_name": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.name": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.params": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.results": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.module": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.name": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.shared": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.minimum": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.maximum": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.__init__": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.v128": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.I32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.I64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.F32": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.F64": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.V128": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.EXTERN_REF": {"tf": 1.4142135623730951}, "wasmer.wasmer.Type.FUNC_REF": {"tf": 1.4142135623730951}}, "df": 132, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 5}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 5}}}}}}}}}}}}}}}}}}}}}}}}, "t": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}}, "docs": {}, "df": 0}}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}}, "df": 2}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}}, "df": 1}}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.engine_name": {"tf": 1}}, "df": 1}}}}}}}}}}, "_": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "_": {"docs": {"wasmer.wasmer.Exports.__init__": {"tf": 1}, "wasmer.wasmer.ExportsIterator.__init__": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.ExportType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}}, "df": 31}}}}}}}}, "f": {"3": {"2": {"docs": {"wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Function.__init__": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}}, "df": 3, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.FunctionType.__init__": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}, "wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 4}}}}}}}, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float32Array.__init__": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Float64Array.__init__": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.Type": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}, "wasmer.wasmer.Type.F32": {"tf": 1}, "wasmer.wasmer.Type.F64": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}, "wasmer.wasmer.Type.EXTERN_REF": {"tf": 1}, "wasmer.wasmer.Type.FUNC_REF": {"tf": 1}}, "df": 16}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Table.__init__": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 4, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.__init__": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 5}}}}}}}, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.to_dict": {"tf": 1}}, "df": 1}}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.__init__": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.GlobalType.__init__": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 4}}}}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}}, "v": {"1": {"2": {"8": {"docs": {"wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer.wasmer.Type.V128": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.__init__": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 8}, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.__init__": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}}, "df": 17}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.__init__": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 5}}}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.__init__": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 10}}}}, "a": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 2}}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 2}}}}}}}, "u": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint16Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint32Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint64Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Uint8Array.__init__": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}}}}, "i": {"3": {"2": {"docs": {"wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Type.I32": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Type.I64": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int16Array.__init__": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int32Array.__init__": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int64Array.__init__": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Int8Array.__init__": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}}, "df": 3}}}}}}, "docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}}}}}}}}}}}}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Instance.__init__": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}}, "df": 3}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 1, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.__init__": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 5}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.ImportType.__init__": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 5}}}}}}}}}, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}}, "df": 2}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.Store.__init__": {"tf": 1}, "wasmer.wasmer.Store.compiler_name": {"tf": 1}, "wasmer.wasmer.Store.engine_name": {"tf": 1}}, "df": 4}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}}, "b": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Buffer.__init__": {"tf": 1}}, "df": 3}}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 10}}}}}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.__init__": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.__init__": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.__init__": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 9, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store.compiler_name": {"tf": 1}}, "df": 1}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 1}}}}}}}, "doc": {"root": {"0": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.Instance": {"tf": 2}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 2.6457513110645907}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 2.449489742783178}}, "df": 21, "x": {"5": {"7": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "6": {"1": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "5": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}, "7": {"2": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "3": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}, "1": {"1": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 1}, "2": {"8": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "5": {"3": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "7": {"docs": {"wasmer.wasmer.Memory.type": {"tf": 1}}, "df": 1}, "9": {"6": {"6": {"0": {"8": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 2}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportType": {"tf": 2.6457513110645907}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 22}, "2": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportType": {"tf": 2.8284271247461903}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}}, "df": 12}, "3": {"9": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.wat2wasm": {"tf": 2}, "wasmer.wasmer.wasm2wat": {"tf": 2}, "wasmer.wasmer.Function": {"tf": 2.8284271247461903}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 2}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 2.449489742783178}, "wasmer.wasmer.Buffer": {"tf": 2.449489742783178}, "wasmer.wasmer.Float32Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Float64Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int16Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int32Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int64Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Int8Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint16Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint32Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint64Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Uint8Array": {"tf": 2.8284271247461903}, "wasmer.wasmer.Module": {"tf": 2.8284271247461903}, "wasmer.wasmer.Module.custom_sections": {"tf": 3.7416573867739413}, "wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 3.605551275463989}}, "df": 26}, "docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 2}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportType": {"tf": 2.8284271247461903}}, "df": 12}, "4": {"1": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}, "2": {"docs": {"wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 11}, "docs": {"wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}}, "df": 4}, "5": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}}, "df": 2}, "6": {"4": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}, "b": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 1}}}, "5": {"5": {"3": {"6": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "7": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 6}, "8": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "9": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1.4142135623730951}}, "df": 1}}}}, "docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 14, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 64, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}}, "df": 2}}}}}}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}, "_": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}}, "t": {"2": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer.wat2wasm": {"tf": 1.4142135623730951}, "wasmer.wasmer.wasm2wat": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 2}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 2.23606797749979}, "wasmer.wasmer.Module": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.validate": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1.7320508075688772}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 34}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 24, "_": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 5}}}}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 11}}}}}, "p": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 23}}}}}, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 17}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 12}}}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 12, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}}, "df": 6}}, "c": {"docs": {}, "df": 0, "k": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "g": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 6}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 14}}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}, "g": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 10}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 10}}}, "a": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 12}}, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 3}, "r": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2.23606797749979}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 2}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global": {"tf": 2}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 4.358898943540674}, "wasmer.wasmer.ImportType": {"tf": 4.795831523312719}}, "df": 42}}, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 5, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 1}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}}}}, "n": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 2.23606797749979}}, "df": 1}}}, "y": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportType": {"tf": 1}}, "df": 1}}}}}}, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "v": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}, "l": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}, "c": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Table": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}}, "df": 2}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 2}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 2.449489742783178}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.7320508075688772}}, "df": 15, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}}}}}}}}}}, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}}, "df": 5, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}, "e": {"docs": {}, "df": 0, "q": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 4, "s": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}}, "df": 1}}}}}}}}}}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}, "f": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 2}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}}, "df": 1}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 5}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 7}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 4, "_": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 19}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}}, "df": 3}}}}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}}, "df": 2, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}}}, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 9}}}, "r": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 10}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "h": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.Instance": {"tf": 2}}, "df": 2}}, "n": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "i": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {}, "df": 0, "b": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 11}, "x": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 8}}}}}, "l": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}}, "df": 17}}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 3}, "wasmer.wasmer": {"tf": 3}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2.23606797749979}, "wasmer.wasmer.ExportsIterator": {"tf": 2.23606797749979}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory": {"tf": 2}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Table.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Table.size": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportObject": {"tf": 4}, "wasmer.wasmer.Instance": {"tf": 3.872983346207417}, "wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}, "wasmer.wasmer.Module": {"tf": 2.8284271247461903}, "wasmer.wasmer.Module.validate": {"tf": 2}, "wasmer.wasmer.Module.custom_sections": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.serialize": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.deserialize": {"tf": 3.605551275463989}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 3.872983346207417}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 2.449489742783178}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 3.1622776601683795}, "wasmer.wasmer.ImportType.module": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 38, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1.7320508075688772}}, "df": 1}}}, "'": {"docs": {"wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1.4142135623730951}}, "df": 1}}, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 23}}}, "e": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}}, "df": 2, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 2}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 4.123105625617661}, "wasmer.wasmer.Memory.grow": {"tf": 2.6457513110645907}, "wasmer.wasmer.Memory.uint8_view": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.int8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.data_size": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.size": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.buffer": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportObject": {"tf": 3.1622776601683795}, "wasmer.wasmer.ImportObject.register": {"tf": 2}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 2.6457513110645907}, "wasmer.wasmer.Float32Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Float64Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int16Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int32Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int64Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Int8Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint16Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint32Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint64Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Uint8Array": {"tf": 2.449489742783178}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.MemoryType": {"tf": 1.7320508075688772}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 42}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1.4142135623730951}}, "df": 15}}}, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Memory.data_size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 8}}}}, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}}, "df": 10}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 10}}}}, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 4}}}}}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 13}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 10}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "v": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 27, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 5}}}}}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float64Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int16Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int32Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int64Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Int8Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint16Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint32Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint64Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Uint8Array": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 29, "_": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}}, "df": 1}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 11}}}}, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 3}}}}}, "b": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 14}}, "b": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}}, "df": 4, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}, "i": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}}, "df": 2}}}}, "y": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 30, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "_": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}}, "df": 1}}}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}}, "df": 3}}}}}}, "u": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 2.23606797749979}, "wasmer.wasmer.Buffer": {"tf": 2.23606797749979}}, "df": 4}}}}, "i": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 15}, "d": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}}, "df": 7}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 4}}}}}, "o": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}}, "df": 2}}, "d": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}, "\"": {"docs": {}, "df": 0, "\\": {"0": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}, "docs": {}, "df": 0}}, "e": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}}}}, "f": {"3": {"2": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.f32": {"tf": 1.4142135623730951}}, "df": 3}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Value.f64": {"tf": 1.4142135623730951}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 4}}}}}, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}}, "df": 7}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 1}}}}, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 4}}}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 3}}}}, "o": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "u": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2, "c": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportsIterator": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 2.23606797749979}, "wasmer.wasmer.Instance": {"tf": 2.23606797749979}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 10, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 4.47213595499958}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject.register": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 3}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1.7320508075688772}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType.params": {"tf": 1}, "wasmer.wasmer.FunctionType.results": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}}, "df": 19, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}}, "df": 7}}}, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 2.449489742783178}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 6}}}, "_": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 3}}}}}}}, "i": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 2}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"3": {"2": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.float32_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.float64_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "a": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}, "wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 2, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 5}}}}, "a": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 70}}}}, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Exports": {"tf": 4.123105625617661}, "wasmer.wasmer.ExportsIterator": {"tf": 2.8284271247461903}, "wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.Instance": {"tf": 2.6457513110645907}, "wasmer.wasmer.Instance.exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 5.291502622129181}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ExportType.name": {"tf": 1}}, "df": 28, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}}, "df": 2}}}}}, "s": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 1}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 3.4641016151377544}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.4142135623730951}}, "df": 14}}}, "v": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.register": {"tf": 1}}, "df": 2}, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Type": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 3}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 27}}}}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}}, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}, "u": {"docs": {}, "df": 0, "s": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 2.23606797749979}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1.4142135623730951}}, "df": 11, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 3}}}}, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 2}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 2.23606797749979}}, "df": 1}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"1": {"6": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint16_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint32_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint64_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 11}}}}}, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 21}}}}}}, "docs": {}, "df": 0}}}}, "s": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 2.449489742783178}, "wasmer.wasmer.Buffer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 1}}, "df": 7, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 12}}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 2, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}}}}, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}}, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer": {"tf": 2.23606797749979}, "wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 3.4641016151377544}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 2}, "wasmer.wasmer.Global.value": {"tf": 2}, "wasmer.wasmer.Global.mutable": {"tf": 2}, "wasmer.wasmer.Memory": {"tf": 2.449489742783178}, "wasmer.wasmer.Memory.grow": {"tf": 2}, "wasmer.wasmer.Memory.uint8_view": {"tf": 2}, "wasmer.wasmer.Memory.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 2}, "wasmer.wasmer.Memory.size": {"tf": 2}, "wasmer.wasmer.Memory.buffer": {"tf": 2}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 4.58257569495584}, "wasmer.wasmer.ImportObject.register": {"tf": 2.23606797749979}, "wasmer.wasmer.Instance": {"tf": 2.8284271247461903}, "wasmer.wasmer.Buffer": {"tf": 2}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.validate": {"tf": 2}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 2}, "wasmer.wasmer.Module.deserialize": {"tf": 2.23606797749979}, "wasmer.wasmer.Module.name": {"tf": 2.449489742783178}, "wasmer.wasmer.Store": {"tf": 3}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.7320508075688772}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.7320508075688772}}, "df": 48}}}, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Table": {"tf": 1}}, "df": 1}}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}}, "df": 10}}}}}, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 10, "i": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}}, "df": 2, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "x": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 13}}}, "u": {"docs": {}, "df": 0, "m": {"docs": {"wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function": {"tf": 2}, "wasmer.wasmer.Function.type": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 3.1622776601683795}, "wasmer.wasmer.ImportObject.register": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 3.7416573867739413}}, "df": 7, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function.type": {"tf": 2}}, "df": 1}}}}}, "c": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}, "b": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int16_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float32_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.float64_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 16}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}}, "df": 1}}}}}, "t": {"docs": {"wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1.4142135623730951}}, "df": 4}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 2}}, "df": 2, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.deserialize": {"tf": 1.7320508075688772}}, "df": 2}}}}}}}}}}}}}}}, "w": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Function": {"tf": 1.4142135623730951}}, "df": 1}}}, "i": {"docs": {}, "df": 0, "z": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}}, "df": 5}}, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 10}}, "g": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 1}}}}}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 3}}}}}}}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 5}}}}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.7320508075688772}, "wasmer.wasmer.Module.name": {"tf": 3.1622776601683795}, "wasmer.wasmer.ExportType": {"tf": 2}, "wasmer.wasmer.ExportType.name": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 2}, "wasmer.wasmer.ImportType.module": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.name": {"tf": 1}}, "df": 8, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 4}}}}}}}, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 4}, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}}, "n": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}}, "df": 5}}, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1}}, "df": 2}}}}}, "e": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}}, "df": 3}}, "w": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 2}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Value": {"tf": 1}}, "df": 1}}}}}}}}, "t": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}}, "df": 10}}, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}, "wasmer.wasmer.MemoryType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 14}}}}}, "s": {"docs": {"wasmer.wasmer.ImportType": {"tf": 2.8284271247461903}}, "df": 1}}, "i": {"3": {"2": {"docs": {"wasmer": {"tf": 2}, "wasmer.wasmer": {"tf": 2}, "wasmer.wasmer.Exports": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportsIterator": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function": {"tf": 3.605551275463989}, "wasmer.wasmer.Function.type": {"tf": 2.6457513110645907}, "wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 4}, "wasmer.wasmer.Instance": {"tf": 3.1622776601683795}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.FunctionType": {"tf": 2.449489742783178}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1.4142135623730951}}, "df": 19}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 2.6457513110645907}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.Value.i64": {"tf": 1.4142135623730951}}, "df": 6}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.grow": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Memory.data_size": {"tf": 1}, "wasmer.wasmer.Memory.size": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 3.4641016151377544}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 3}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.name": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 5.656854249492381}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.ImportType.name": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}, "wasmer.wasmer.Value.i32": {"tf": 1}, "wasmer.wasmer.Value.i64": {"tf": 1}, "wasmer.wasmer.Value.f32": {"tf": 1}, "wasmer.wasmer.Value.f64": {"tf": 1}, "wasmer.wasmer.Value.v128": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1.4142135623730951}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1.4142135623730951}}, "df": 61, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}}, "df": 4}}}}}}, "_": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 4}}}}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Module.imports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}}, "df": 2}}}}}}, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 13}}}}}}}, "m": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}}, "df": 2}}}}, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {"wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer": {"tf": 2.449489742783178}, "wasmer.wasmer.Exports": {"tf": 2.449489742783178}, "wasmer.wasmer.ExportsIterator": {"tf": 2.23606797749979}, "wasmer.wasmer.Function": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 2}, "wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 3}, "wasmer.wasmer.Memory.type": {"tf": 2}, "wasmer.wasmer.Table": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.type": {"tf": 2}, "wasmer.wasmer.Table.size": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 3.872983346207417}, "wasmer.wasmer.Instance": {"tf": 3.4641016151377544}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 2}, "wasmer.wasmer.Float64Array": {"tf": 2}, "wasmer.wasmer.Int16Array": {"tf": 2}, "wasmer.wasmer.Int32Array": {"tf": 2}, "wasmer.wasmer.Int64Array": {"tf": 2}, "wasmer.wasmer.Int8Array": {"tf": 2}, "wasmer.wasmer.Uint16Array": {"tf": 2}, "wasmer.wasmer.Uint32Array": {"tf": 2}, "wasmer.wasmer.Uint64Array": {"tf": 2}, "wasmer.wasmer.Uint8Array": {"tf": 2}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}}, "df": 28}, "t": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 5}}}}}}, "v": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1, "e": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}}}}}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 2}}}, "t": {"1": {"6": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int16_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "3": {"2": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int32_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "6": {"4": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int64_view": {"tf": 1}}, "df": 1}}}}}}, "docs": {}, "df": 0}, "8": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 3.1622776601683795}}, "df": 2, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "y": {"docs": {"wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}}, "df": 2}}}}}, "_": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}}}}}, "docs": {"wasmer.wasmer.Function": {"tf": 2}, "wasmer.wasmer.ImportObject": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject.register": {"tf": 1.7320508075688772}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 4, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}}, "c": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "n": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}, "g": {"docs": {"wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 1}}}, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Global": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {"wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.7320508075688772}}, "df": 1}}}}}}}, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.params": {"tf": 1}}, "df": 1}}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.ExportsIterator": {"tf": 1}}, "df": 2}}, "'": {"docs": {"wasmer.wasmer.Value": {"tf": 1}}, "df": 1}}, "s": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Exports": {"tf": 2.23606797749979}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportType": {"tf": 2.23606797749979}}, "df": 8}}}}}, "o": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}}}}}}}}, "i": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}, "v": {"1": {"2": {"8": {"docs": {"wasmer.wasmer.Value.v128": {"tf": 1.4142135623730951}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}, "docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory": {"tf": 1.4142135623730951}}, "df": 1}}}}}, "a": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "u": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.value": {"tf": 2.449489742783178}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.GlobalType.mutable": {"tf": 1}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 2.449489742783178}, "wasmer.wasmer.Value.i32": {"tf": 2}, "wasmer.wasmer.Value.i64": {"tf": 2}, "wasmer.wasmer.Value.f32": {"tf": 2}, "wasmer.wasmer.Value.f64": {"tf": 2}, "wasmer.wasmer.Value.v128": {"tf": 2}}, "df": 16}, "i": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 2}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}}, "df": 1}}}}}}, "i": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1.4142135623730951}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Float64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Int8Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint16Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint32Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint64Array": {"tf": 1.4142135623730951}, "wasmer.wasmer.Uint8Array": {"tf": 1.4142135623730951}}, "df": 22}}, "a": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}, "h": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.Memory": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table": {"tf": 1.4142135623730951}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 4}}}, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2}}}, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, ":": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 6}}}}}}}}}}}}}}}}, "m": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "#": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Global": {"tf": 1}}, "df": 1}}}}}}, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}}, "o": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}}}}, "t": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Table": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}}}, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 2}}, "l": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {"wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}, "wasmer.wasmer.Module.name": {"tf": 1.4142135623730951}}, "df": 12}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}, "d": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2, "'": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler.into_opaque_compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler.into_opaque_compiler": {"tf": 1}}, "df": 3}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 7}}}}}}}, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}}, "df": 2}}}}}}}}, "s": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 1}}}}}}}}, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 1}}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "a": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1.7320508075688772}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}}, "df": 26, "_": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Memory.data_size": {"tf": 1}}, "df": 1}}}}}, "e": {"docs": {}, "df": 0, "f": {"docs": {"wasmer.wasmer.Function": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 4, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}}, "df": 3, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "d": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 1}}}}}}}}}, "p": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}}, "df": 1}}}}, "c": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}}}, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.validate": {"tf": 1}}, "df": 1}}}}}}}}}, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 2}}, "df": 2}}}, "c": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 3}}}}, "b": {"docs": {"wasmer.wasmer.GlobalType": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 2}}}}, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "n": {"docs": {"wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 6}}}}, "l": {"docs": {"wasmer.wasmer.Module.deserialize": {"tf": 1.4142135623730951}}, "df": 1}}, "u": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 2}}}}, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}}, "df": 2, "y": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "e": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 4.69041575982343}, "wasmer.wasmer.Function.type": {"tf": 2.8284271247461903}, "wasmer.wasmer.Global": {"tf": 2}, "wasmer.wasmer.Global.type": {"tf": 2.23606797749979}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.type": {"tf": 2.23606797749979}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.serialize": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 4.69041575982343}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 2.23606797749979}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 4.47213595499958}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1.4142135623730951}}, "df": 23}, "i": {"docs": {}, "df": 0, "c": {"docs": {"wasmer.wasmer.TableType": {"tf": 1}}, "df": 1}}}}, "h": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "'": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 3}}, "n": {"docs": {}, "df": 0, "k": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.MemoryType.shared": {"tf": 1}}, "df": 1}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "g": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "b": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}}, "df": 2, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 2}, "wasmer.wasmer.Table.type": {"tf": 2.6457513110645907}, "wasmer.wasmer.Table.size": {"tf": 2.6457513110645907}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.TableType": {"tf": 2}, "wasmer.wasmer.TableType.minimum": {"tf": 1}, "wasmer.wasmer.TableType.type": {"tf": 1}, "wasmer.wasmer.TableType.maximum": {"tf": 1}}, "df": 17, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}, "wasmer.wasmer.TableType": {"tf": 1.4142135623730951}}, "df": 6}}}, "_": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Table.type": {"tf": 2}, "wasmer.wasmer.TableType": {"tf": 1}}, "df": 2}}}}}}}}, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}}, "df": 1}}}}}}, "u": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Global": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 1}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.MemoryType": {"tf": 1}}, "df": 5}}, "i": {"docs": {"wasmer.wasmer.Module": {"tf": 1}}, "df": 1}}, "e": {"docs": {}, "df": 0, "x": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 3}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1, "s": {"docs": {}, "df": 0, "/": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}}, "df": 13}}}}, "c": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "_": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}}}}}}}}}}}}}}}}, "u": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "l": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}, "w": {"docs": {}, "df": 0, "o": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}}, "df": 1}}, "i": {"docs": {}, "df": 0, "m": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Value": {"tf": 1}}, "df": 2}}}}, "q": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 2.8284271247461903}, "wasmer.wasmer": {"tf": 2.8284271247461903}, "wasmer.wasmer.Exports": {"tf": 3.7416573867739413}, "wasmer.wasmer.ExportsIterator": {"tf": 4.69041575982343}, "wasmer.wasmer.Function.type": {"tf": 2.8284271247461903}, "wasmer.wasmer.Table.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Table.size": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 7.3484692283495345}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 2.449489742783178}, "wasmer.wasmer.Instance": {"tf": 4.898979485566356}, "wasmer.wasmer.Module.deserialize": {"tf": 2.8284271247461903}, "wasmer.wasmer.ExportType": {"tf": 4.69041575982343}, "wasmer.wasmer.ImportType": {"tf": 6.164414002968976}}, "df": 14}}}}, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer": {"tf": 1.4142135623730951}, "wasmer.wasmer.Function.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.7320508075688772}}, "df": 5}}}, "a": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}}, "df": 1}}}, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "'": {"docs": {"wasmer.wasmer.Function": {"tf": 1}}, "df": 1}}, "n": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.buffer": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}, "wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_cranelift.wasmer_compiler_cranelift": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_singlepass": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass": {"tf": 1}}, "df": 20}}}}, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}}, "df": 1}}}}, "s": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 3}}, "f": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}, "a": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.serialize": {"tf": 1}}, "df": 1}}}}, "l": {"docs": {}, "df": 0, "v": {"docs": {}, "df": 0, "m": {"docs": {"wasmer.wasmer.Store": {"tf": 1}, "wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}}, "df": 4}}}}, "o": {"docs": {}, "df": 0, "b": {"docs": {}, "df": 0, "j": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "c": {"docs": {}, "df": 0, "t": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Function.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.ImportObject.contains_namespace": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 2.23606797749979}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}, "wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 11}}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.ExportsIterator": {"tf": 1}, "wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 23, "w": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Module.name": {"tf": 1}}, "df": 1}}}}}}}}}}, "r": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "g": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1.4142135623730951}}, "df": 1}}}}, "d": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 3}}}}, "p": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.MemoryType.maximum": {"tf": 1}}, "df": 2}}}}, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 14}}}, "f": {"docs": {}, "df": 0, "f": {"docs": {}, "df": 0, "s": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.ImportObject": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}}, "df": 12}}}}}, "n": {"docs": {"wasmer.wasmer.Module.custom_sections": {"tf": 1}}, "df": 1}, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "s": {"docs": {"wasmer.wasmer.Store": {"tf": 1}}, "df": 1}}}}}}}, "u": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "p": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.FunctionType.results": {"tf": 1}}, "df": 1}}}}}}, "g": {"docs": {}, "df": 0, "l": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "b": {"docs": {"wasmer.wasmer.Exports": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}}, "df": 2, "a": {"docs": {}, "df": 0, "l": {"docs": {"wasmer": {"tf": 1}, "wasmer.wasmer": {"tf": 1}, "wasmer.wasmer.Exports": {"tf": 2}, "wasmer.wasmer.ExportsIterator": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global": {"tf": 2.8284271247461903}, "wasmer.wasmer.Global.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.value": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.mutable": {"tf": 1.7320508075688772}, "wasmer.wasmer.ImportObject": {"tf": 3.3166247903554}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1.7320508075688772}, "wasmer.wasmer.ExportType": {"tf": 1.7320508075688772}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.GlobalType.type": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1.7320508075688772}}, "df": 16, "_": {"docs": {"wasmer.wasmer.Global": {"tf": 2.23606797749979}, "wasmer.wasmer.Global.type": {"tf": 1.4142135623730951}, "wasmer.wasmer.Global.value": {"tf": 2}, "wasmer.wasmer.Global.mutable": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 2}}, "df": 5, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Global": {"tf": 1.7320508075688772}, "wasmer.wasmer.Global.type": {"tf": 1.7320508075688772}, "wasmer.wasmer.GlobalType": {"tf": 1}}, "df": 3}}}}, "t": {"docs": {}, "df": 0, "y": {"docs": {}, "df": 0, "p": {"docs": {"wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ExportType.type": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportType.type": {"tf": 1}}, "df": 6}}}}}}}}, "i": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "h": {"docs": {}, "df": 0, "u": {"docs": {}, "df": 0, "b": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Global": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Table": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Store": {"tf": 1}}, "df": 6}}}}, "v": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.Function": {"tf": 1}, "wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module": {"tf": 1}, "wasmer.wasmer.Module.validate": {"tf": 1}, "wasmer.wasmer.Module.custom_sections": {"tf": 1.4142135623730951}}, "df": 6}}}}, "t": {"docs": {"wasmer.wasmer.Function": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject": {"tf": 1.4142135623730951}, "wasmer.wasmer.ImportObject.register": {"tf": 1}, "wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.FunctionType": {"tf": 1}}, "df": 5}, "e": {"docs": {}, "df": 0, "t": {"docs": {"wasmer.wasmer.Memory": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Table.size": {"tf": 1}, "wasmer.wasmer.ImportObject.to_dict": {"tf": 1}, "wasmer.wasmer.Float32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Float64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Int8Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint16Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint32Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint64Array.bytes_per_element": {"tf": 1}, "wasmer.wasmer.Uint8Array.bytes_per_element": {"tf": 1}}, "df": 15, "t": {"docs": {}, "df": 0, "e": {"docs": {}, "df": 0, "r": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}, "wasmer.wasmer.Float32Array": {"tf": 1}, "wasmer.wasmer.Float64Array": {"tf": 1}, "wasmer.wasmer.Int16Array": {"tf": 1}, "wasmer.wasmer.Int32Array": {"tf": 1}, "wasmer.wasmer.Int64Array": {"tf": 1}, "wasmer.wasmer.Int8Array": {"tf": 1}, "wasmer.wasmer.Uint16Array": {"tf": 1}, "wasmer.wasmer.Uint32Array": {"tf": 1}, "wasmer.wasmer.Uint64Array": {"tf": 1}, "wasmer.wasmer.Uint8Array": {"tf": 1}, "wasmer.wasmer.ExportType": {"tf": 1}, "wasmer.wasmer.ImportType": {"tf": 1}}, "df": 13}}}}}, "r": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {"wasmer.wasmer.Memory.grow": {"tf": 1.4142135623730951}}, "df": 1}}}, "o": {"docs": {"wasmer.wasmer.Instance": {"tf": 1}, "wasmer.wasmer.Module.deserialize": {"tf": 1}}, "df": 2}, "u": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "r": {"docs": {}, "df": 0, "a": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "t": {"docs": {}, "df": 0, "e": {"docs": {"wasmer.wasmer.Module.exports": {"tf": 1}, "wasmer.wasmer.Module.imports": {"tf": 1}}, "df": 2}}}}}}}}, "x": {"0": {"0": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 2}, "1": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"0": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"0": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"0": {"docs": {"wasmer.wasmer.wat2wasm": {"tf": 1}, "wasmer.wasmer.wasm2wat": {"tf": 1}}, "df": 2}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "2": {"docs": {}, "df": 0, "\\": {"docs": {}, "df": 0, "x": {"0": {"3": {"docs": {"wasmer.wasmer.Buffer": {"tf": 1}}, "df": 1}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {}, "df": 0}}}, "docs": {}, "df": 0}, "docs": {"wasmer.wasmer.Function": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 4}, "k": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "n": {"docs": {}, "df": 0, "d": {"docs": {"wasmer.wasmer.Exports": {"tf": 1}, "wasmer.wasmer.Global.type": {"tf": 1}, "wasmer.wasmer.Memory.uint8_view": {"tf": 1}, "wasmer.wasmer.Memory.int8_view": {"tf": 1}, "wasmer.wasmer.Memory.uint16_view": {"tf": 1}, "wasmer.wasmer.Memory.int16_view": {"tf": 1}, "wasmer.wasmer.Memory.uint32_view": {"tf": 1}, "wasmer.wasmer.Memory.int32_view": {"tf": 1}, "wasmer.wasmer.Memory.uint64_view": {"tf": 1}, "wasmer.wasmer.Memory.int64_view": {"tf": 1}, "wasmer.wasmer.Memory.float32_view": {"tf": 1}, "wasmer.wasmer.Memory.float64_view": {"tf": 1}, "wasmer.wasmer.Memory.type": {"tf": 1}, "wasmer.wasmer.Table.type": {"tf": 1}, "wasmer.wasmer.Instance.exports": {"tf": 1}, "wasmer.wasmer.GlobalType": {"tf": 1}}, "df": 16}}}, "n": {"docs": {}, "df": 0, "o": {"docs": {}, "df": 0, "w": {"docs": {}, "df": 0, "n": {"docs": {"wasmer.wasmer.ImportType.module": {"tf": 1}}, "df": 1}}}}}, "y": {"docs": {"wasmer.wasmer.Function": {"tf": 2.449489742783178}, "wasmer.wasmer.ImportObject": {"tf": 2}, "wasmer.wasmer.ImportObject.register": {"tf": 1.4142135623730951}, "wasmer.wasmer.Instance": {"tf": 1.4142135623730951}}, "df": 4}, "j": {"docs": {}, "df": 0, "i": {"docs": {}, "df": 0, "t": {"docs": {"wasmer_compiler_cranelift.wasmer_compiler_cranelift.Compiler": {"tf": 1}, "wasmer_compiler_llvm.wasmer_compiler_llvm.Compiler": {"tf": 1}, "wasmer_compiler_singlepass.wasmer_compiler_singlepass.Compiler": {"tf": 1}}, "df": 3}}}}}}, "pipeline": ["trimmer", "stopWordFilter", "stemmer"], "_isPrebuiltIndex": true}; // mirrored in build-search-index.js (part 1) // Also split on html tags. this is a cheap heuristic, but good enough. diff --git a/docs/api/wasmer/wasmer.html b/docs/api/wasmer/wasmer.html index 88d829b9..3f88d576 100644 --- a/docs/api/wasmer/wasmer.html +++ b/docs/api/wasmer/wasmer.html @@ -91,10 +91,10 @@

API Documentation

type
  • - mutable + value
  • - value + mutable
  • @@ -142,10 +142,10 @@

    API Documentation

    type
  • - size + data_size
  • - data_size + size
  • buffer @@ -349,10 +349,10 @@

    API Documentation

    exports
  • - name + imports
  • - imports + name
  • @@ -364,10 +364,10 @@

    API Documentation

    Store
  • - engine_name + compiler_name
  • - compiler_name + engine_name
  • @@ -379,10 +379,10 @@

    API Documentation

    ExportType
  • - name + type
  • - type + name
  • @@ -394,10 +394,10 @@

    API Documentation

    FunctionType
  • - results + params
  • - params + results
  • @@ -409,10 +409,10 @@

    API Documentation

    GlobalType
  • - mutable + type
  • - type + mutable
  • @@ -442,13 +442,13 @@

    API Documentation

    MemoryType
  • - minimum + maximum
  • - shared + minimum
  • - maximum + shared
  • @@ -460,13 +460,13 @@

    API Documentation

    TableType
  • - maximum + minimum
  • type
  • - minimum + maximum
  • @@ -613,7 +613,7 @@

    Example

    #   - __version__ = '1.0.0' + __version__ = '1.1.0'
    @@ -622,7 +622,7 @@

    Example

    #   - __core_version__ = '1.0.0' + __core_version__ = '1.1.0'
    @@ -1006,13 +1006,13 @@

    Example

    -
    -
    #   +
    +
    #   - mutable + value
    -

    Checks whether the global is mutable.

    +

    Get or set a custom value to the global instance.

    Example

    @@ -1021,19 +1021,23 @@

    Example

    store = Store() global_ = Global(store, Value.i32(42), mutable=True) -assert global_.mutable == True +assert global_.value == 42 + +global_.value = 153 + +assert global_.value == 153
    -
    -
    #   +
    +
    #   - value + mutable
    -

    Get or set a custom value to the global instance.

    +

    Checks whether the global is mutable.

    Example

    @@ -1042,11 +1046,7 @@

    Example

    store = Store() global_ = Global(store, Value.i32(42), mutable=True) -assert global_.value == 42 - -global_.value = 153 - -assert global_.value == 153 +assert global_.mutable == True
    @@ -1342,13 +1342,13 @@

    Example

    -
    -
    #   +
    +
    #   - size + data_size
    -

    Returns the size (in pages) of the Memory.

    +

    Returns the size (in bytes) of the Memory.

    Example

    @@ -1358,19 +1358,19 @@

    Example

    memory_type = MemoryType(minimum=3) memory = Memory(store, memory_type) -assert memory.size == 3 +assert memory.data_size == 196608
    -
    -
    #   +
    +
    #   - data_size + size
    -

    Returns the size (in bytes) of the Memory.

    +

    Returns the size (in pages) of the Memory.

    Example

    @@ -1380,7 +1380,7 @@

    Example

    memory_type = MemoryType(minimum=3) memory = Memory(store, memory_type) -assert memory.data_size == 196608 +assert memory.size == 3
    @@ -2769,6 +2769,25 @@

    Example

    +
    +
    +
    #   + + imports +
    + +

    Returns a list of ImportType objects, which represents all +the imports of this module.

    + +

    The order of the imports is guaranteed to be the same as in +the WebAssembly bytecode.

    + +

    Example

    + +

    See the ImportType class to learn more.

    +
    + +
    #   @@ -2803,25 +2822,6 @@

    Example

    -
    -
    -
    #   - - imports -
    - -

    Returns a list of ImportType objects, which represents all -the imports of this module.

    - -

    The order of the imports is guaranteed to be the same as in -the WebAssembly bytecode.

    - -

    Example

    - -

    See the ImportType class to learn more.

    -
    - -
    @@ -2885,19 +2885,19 @@

    Examples

    -
    -
    #   +
    +
    #   - engine_name + compiler_name
    -
    -
    #   +
    +
    #   - compiler_name + engine_name
    @@ -2973,25 +2973,25 @@

    Examples

    -
    -
    #   +
    +
    #   - name + type
    -

    The name of the export.

    +

    The type of the export. Possible values are: FunctionType, +GlobalType, TableType and MemoryType.

    -
    -
    #   +
    +
    #   - type + name
    -

    The type of the export. Possible values are: FunctionType, -GlobalType, TableType and MemoryType.

    +

    The name of the export.

    @@ -3036,24 +3036,24 @@

    Example

    -
    -
    #   +
    +
    #   - results + params
    -

    Results, i.e. outputs, of the function.

    +

    Parameters, i.e. inputs, of the function.

    -
    -
    #   +
    +
    #   - params + results
    -

    Parameters, i.e. inputs, of the function.

    +

    Results, i.e. outputs, of the function.

    @@ -3092,24 +3092,24 @@

    Example

    -
    -
    #   +
    +
    #   - mutable + type
    -

    A flag indicating whether the value may change at runtime.

    +

    The type of the value stored in the global.

    -
    -
    #   +
    +
    #   - type + mutable
    -

    The type of the value stored in the global.

    +

    A flag indicating whether the value may change at runtime.

    @@ -3258,6 +3258,17 @@

    Example

    +
    +
    +
    #   + + maximum +
    + +

    The maximum number of pages in the memory. It is optional.

    +
    + +
    #   @@ -3280,17 +3291,6 @@

    Example

    -
    -
    -
    #   - - maximum -
    - -

    The maximum number of pages in the memory. It is optional.

    -
    - -
    @@ -3330,13 +3330,13 @@

    Example

    -
    -
    #   +
    +
    #   - maximum + minimum
    -

    The maximum number of elements in the table.

    +

    The minimum number of elements in the table.

    @@ -3352,13 +3352,13 @@

    Example

    -
    -
    #   +
    +
    #   - minimum + maximum
    -

    The minimum number of elements in the table.

    +

    The maximum number of elements in the table.

    diff --git a/packages/any-api/setup.py b/packages/any-api/setup.py index 163c6f09..457ba6e7 100644 --- a/packages/any-api/setup.py +++ b/packages/any-api/setup.py @@ -10,7 +10,7 @@ setup( name='wasmer', - version='1.0.0', + version='1.1.0', author='The Wasmer Engineering Team', author_email='engineering@wasmer.io', license='MIT', diff --git a/packages/any-compiler-cranelift/setup.py b/packages/any-compiler-cranelift/setup.py index 4e513b96..28c6fb24 100644 --- a/packages/any-compiler-cranelift/setup.py +++ b/packages/any-compiler-cranelift/setup.py @@ -10,7 +10,7 @@ setup( name='wasmer-compiler-cranelift', - version='1.0.0', + version='1.1.0', author='The Wasmer Engineering Team', author_email='engineering@wasmer.io', license='MIT', diff --git a/packages/any-compiler-llvm/setup.py b/packages/any-compiler-llvm/setup.py index d1e29c52..441f8157 100644 --- a/packages/any-compiler-llvm/setup.py +++ b/packages/any-compiler-llvm/setup.py @@ -10,7 +10,7 @@ setup( name='wasmer-compiler-llvm', - version='1.0.0', + version='1.1.0', author='The Wasmer Engineering Team', author_email='engineering@wasmer.io', license='MIT', diff --git a/packages/any-compiler-singlepass/setup.py b/packages/any-compiler-singlepass/setup.py index da0d592d..90b27188 100644 --- a/packages/any-compiler-singlepass/setup.py +++ b/packages/any-compiler-singlepass/setup.py @@ -10,7 +10,7 @@ setup( name='wasmer-compiler-singlepass', - version='1.0.0', + version='1.1.0', author='The Wasmer Engineering Team', author_email='engineering@wasmer.io', license='MIT', diff --git a/packages/api/Cargo.toml b/packages/api/Cargo.toml index c3b09d89..84a3bc57 100644 --- a/packages/api/Cargo.toml +++ b/packages/api/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer" -version = "1.0.0" +version = "1.1.0" authors = ["Wasmer Engineering Team "] edition = "2018" description = "Python extension to run WebAssembly binaries" diff --git a/packages/api/README.md b/packages/api/README.md index 06709b12..3feabc7d 100644 --- a/packages/api/README.md +++ b/packages/api/README.md @@ -63,8 +63,8 @@ To install the `wasmer` Python package, and let's say the `wasmer_compiler_cranelift` compiler, just run those commands in your shell: ```sh -$ pip install wasmer==1.0.0 -$ pip install wasmer_compiler_cranelift==1.0.0 +$ pip install wasmer==1.1.0 +$ pip install wasmer_compiler_cranelift==1.1.0 ``` And you're ready to get fun! diff --git a/packages/compiler-cranelift/Cargo.toml b/packages/compiler-cranelift/Cargo.toml index 11cf4ffa..9cfb5ff5 100644 --- a/packages/compiler-cranelift/Cargo.toml +++ b/packages/compiler-cranelift/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer_compiler_cranelift" -version = "1.0.0" +version = "1.1.0" authors = ["Wasmer Engineering Team "] edition = "2018" description = "The Cranelift compiler for the `wasmer` package (to compile WebAssembly module)" diff --git a/packages/compiler-llvm/Cargo.toml b/packages/compiler-llvm/Cargo.toml index f4eab83a..735ec710 100644 --- a/packages/compiler-llvm/Cargo.toml +++ b/packages/compiler-llvm/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer_compiler_llvm" -version = "1.0.0" +version = "1.1.0" authors = ["Wasmer Engineering Team "] edition = "2018" description = "Python extension to run WebAssembly binaries" diff --git a/packages/compiler-singlepass/Cargo.toml b/packages/compiler-singlepass/Cargo.toml index d26276d3..cc7f648e 100644 --- a/packages/compiler-singlepass/Cargo.toml +++ b/packages/compiler-singlepass/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer_compiler_singlepass" -version = "1.0.0" +version = "1.1.0" authors = ["Wasmer Engineering Team "] edition = "2018" description = "Python extension to run WebAssembly binaries" diff --git a/packages/engines/Cargo.toml b/packages/engines/Cargo.toml index c77e9a0f..80315e35 100644 --- a/packages/engines/Cargo.toml +++ b/packages/engines/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "wasmer-engines" -version = "1.0.0" +version = "1.1.0" authors = ["Wasmer Engineering Team "] edition = "2018" description = "Engines and sibling types for the `wasmer-*-python` crates" diff --git a/scripts/update-version.sh b/scripts/update-version.sh index 7c35a00d..52487ee8 100755 --- a/scripts/update-version.sh +++ b/scripts/update-version.sh @@ -13,7 +13,7 @@ fi : "${SED:=sed}" -CURRENT_VERSION="1.0.0" +CURRENT_VERSION="1.1.0" if [[ -z "$1" ]] then @@ -45,4 +45,5 @@ echo "manually check changes to \`Cargo.toml\`" ${FD} setup.py --exec ${SED} -i '{}' -e "s/version='${CURRENT_VERSION}',\?$/version='${NEW_VERSION}',/" echo "manually check changes to \`setup.py\`" -echo "now, update the \`CURRENT_VERSION\` variable in \`update-version.sh\`" +${FD} update-version.sh --exec ${SED} -i '{}' -e "s/CURRENT_VERSION='${CURRENT_VERSION}',\?$/CURRENT_VERSION='${NEW_VERSION}',/" +echo "manually check changes to \`update-version.sh\`" From cd792991ee44a0d4e1939016790f5f87b93cb25f Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Fri, 7 Jan 2022 18:52:10 +0100 Subject: [PATCH 2/2] Use a PyPI-approved version suffix for pre-release builds --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 7b253e16..ae0ed923 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -134,7 +134,7 @@ jobs: if: startsWith(github.ref, 'refs/heads/prepare-') shell: bash run: | - scripts/update-version.sh "$(scripts/update-version.sh --get)-${{ github.run_id }}" + scripts/update-version.sh "$(scripts/update-version.sh --get)-rc${{ github.run_id }}" - name: Install the prelude shell: bash