docs.mx raw

   1  // Package cm provides types and functions for interfacing with the WebAssembly Component Model.
   2  //
   3  // The types in this package (such as [List], [Option], [Result], and [Variant]) are designed to match the memory layout
   4  // of [Component Model] types as specified in the [Canonical ABI].
   5  //
   6  // [Component Model]: https://component-model.bytecodealliance.org/introduction.html
   7  // [Canonical ABI]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/CanonicalABI.md#alignment
   8  package cm
   9