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 Filetype extends ByteEnum[Filetype]

Source
types.scala
Linear Supertypes
ByteEnum[Filetype], ValueEnum[Byte, Filetype], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Filetype
  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[Filetype]
    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. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  16. def toString(): String
    Definition Classes
    AnyRef → Any
  17. def values: IndexedSeq[Filetype]
    Definition Classes
    Filetype → ValueEnum
  18. final lazy val valuesToEntriesMap: Map[Byte, Filetype]
    Definition Classes
    ValueEnum
  19. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  20. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  21. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. def withValue(i: Byte): Filetype
    Definition Classes
    ValueEnum
    Annotations
    @SuppressWarnings()
  23. def withValueEither(i: Byte): Either[NoSuchMember[Byte, ValueEnumEntry[Byte]], Filetype]
    Definition Classes
    ValueEnum
  24. def withValueOpt(i: Byte): Option[Filetype]
    Definition Classes
    ValueEnum
  25. implicit def writer[F[_]](implicit F: MonadError[F, Throwable]): SimpleValueWriter[F, Filetype]
  26. case object BlockDevice extends Filetype with Product with Serializable
  27. case object CharacterDevice extends Filetype with Product with Serializable
  28. case object Directory extends Filetype with Product with Serializable
  29. case object RegularFile extends Filetype with Product with Serializable
  30. case object SocketDgram extends Filetype with Product with Serializable
  31. case object SocketStream extends Filetype with Product with Serializable
  32. case object SymbolicLink extends Filetype with Product with Serializable
  33. case object Unknown extends Filetype with Product with Serializable

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[Filetype]

Inherited from ValueEnum[Byte, Filetype]

Inherited from AnyRef

Inherited from Any

Ungrouped