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
  • Advice
  • Clockid
  • Errno
  • FdFlags
  • Filetype
  • Fstflags
  • LongFlagsOps
  • Lookupflags
  • Oflags
  • Riflags
  • Rights
  • Roflags
  • Sdflags
  • ShortFlagsOps
  • Signal
  • Wasi
  • WasiException
  • Whence

object Advice extends ByteEnum[Advice]

Source
types.scala
Linear Supertypes
ByteEnum[Advice], ValueEnum[Byte, Advice], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Advice
  2. ByteEnum
  3. ValueEnum
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. implicit def reader[F[_]](implicit F: MonadError[F, Throwable]): SimpleValueReader[F, Advice]
  2. def values: IndexedSeq[Advice]
    Definition Classes
    Advice → ValueEnum
  3. final lazy val valuesToEntriesMap: Map[Byte, Advice]
    Definition Classes
    ValueEnum
  4. def withValue(i: Byte): Advice
    Definition Classes
    ValueEnum
    Annotations
    @SuppressWarnings()
  5. def withValueEither(i: Byte): Either[NoSuchMember[Byte, ValueEnumEntry[Byte]], Advice]
    Definition Classes
    ValueEnum
  6. def withValueOpt(i: Byte): Option[Advice]
    Definition Classes
    ValueEnum
  7. case object Dontneed extends Advice with Product with Serializable

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

  8. case object Noreuse extends Advice with Product with Serializable

    The application expects to access the specified data once and then not reuse it thereafter.

  9. case object Normal extends Advice with Product with Serializable

    The application has no advice to give on its behavior with respect to the specified data.

  10. case object Random extends Advice with Product with Serializable

    The application expects to access the specified data in a random order.

  11. case object Sequential extends Advice with Product with Serializable

    The application expects to access the specified data sequentially from lower offsets to higher offsets.

  12. case object Willneed extends Advice with Product with Serializable

    The application expects to access the specified data in the near future.