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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. final macro def findValues: IndexedSeq[Advice]
    Attributes
    protected
    Definition Classes
    ByteEnum
  9. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  10. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  12. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  14. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. implicit def reader[F[_]](implicit F: MonadError[F, Throwable]): SimpleValueReader[F, Advice]
  16. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  17. def toString(): String
    Definition Classes
    AnyRef → Any
  18. def values: IndexedSeq[Advice]
    Definition Classes
    Advice → ValueEnum
  19. final lazy val valuesToEntriesMap: Map[Byte, Advice]
    Definition Classes
    ValueEnum
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  23. def withValue(i: Byte): Advice
    Definition Classes
    ValueEnum
    Annotations
    @SuppressWarnings()
  24. def withValueEither(i: Byte): Either[NoSuchMember[Byte, ValueEnumEntry[Byte]], Advice]
    Definition Classes
    ValueEnum
  25. def withValueOpt(i: Byte): Option[Advice]
    Definition Classes
    ValueEnum
  26. case object Dontneed extends Advice with Product with Serializable

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

  27. case object Noreuse extends Advice with Product with Serializable

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

  28. 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.

  29. case object Random extends Advice with Product with Serializable

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

  30. case object Sequential extends Advice with Product with Serializable

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

  31. case object Willneed extends Advice with Product with Serializable

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

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated @deprecated
    Deprecated

    (Since version ) see corresponding Javadoc for more information.

Inherited from ByteEnum[Advice]

Inherited from ValueEnum[Byte, Advice]

Inherited from AnyRef

Inherited from Any

Ungrouped