Packages

  • package root
    Definition Classes
    root
  • package swam
    Definition Classes
    root
  • package runtime

    This package contains all the classes and types related to running WebAssembly modules.

    This package contains all the classes and types related to running WebAssembly modules.

    The entry point for almost all users will be Engine. A typical use of the engine is:

    import swam._
    import text._
    import runtime._
    import exports._
    
    import cats.implicits._
    import cats.effect._
    
    import java.nio.file.Paths
    
    val tcompiler = Compiler[IO]
    val engine = Engine[IO]
    
    for {
      tcompiler <- tcompiler
      engine <- engine
      mod <- engine.compile(/* source of the module */)
      inst <- mod.newInstance()
      f <- inst.exports.function1[Int, Int]("f")
      res <- f(43)
    } yield res
    
    println(res.unsafeRunSync())
    Definition Classes
    swam
  • package wasi
    Definition Classes
    runtime
  • object Advice extends ByteEnum[Advice]
    Definition Classes
    wasi
  • Dontneed
  • Noreuse
  • Normal
  • Random
  • Sequential
  • Willneed

case object Dontneed extends Advice with Product with Serializable

The application expects that it will not access the specified data in the near future.

Source
types.scala
Linear Supertypes
Serializable, Product, Equals, Advice, ByteEnumEntry, ValueEnumEntry[Byte], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Dontneed
  2. Serializable
  3. Product
  4. Equals
  5. Advice
  6. ByteEnumEntry
  7. ValueEnumEntry
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def productElementName(n: Int): String
    Definition Classes
    Product
  2. def productElementNames: Iterator[String]
    Definition Classes
    Product
  3. val value: Byte
    Definition Classes
    Advice → ValueEnumEntry