How to use the wasmer.Int8Array function in wasmer

To help you get started, we’ve selected a few wasmer examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github wasmerio / python-ext-wasm / tests / test_memory.py View on Github external
def test_is_a_class():
    assert inspect.isclass(Memory)
    assert inspect.isclass(Uint8Array)
    assert inspect.isclass(Int8Array)
    assert inspect.isclass(Uint16Array)
    assert inspect.isclass(Int16Array)
    assert inspect.isclass(Uint32Array)
    assert inspect.isclass(Int32Array)