Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions design/mvp/CanonicalABI.md
Original file line number Diff line number Diff line change
Expand Up @@ -4356,6 +4356,7 @@ specifies:
* [`lower($t)` above](#canonopt-validation) defines required options for `stream.write`
* [`lift($t)` above](#canonopt-validation) defines required options for `stream.read`
* `memory` is required to be present
* 🚝 - `async` is allowed to be omitted, otherwise it must be present

The implementation of these built-ins funnels down to a single `stream_copy`
function that is parameterized by the direction of the copy:
Expand Down Expand Up @@ -4478,6 +4479,7 @@ specifies:
* [`lift($t)` above](#canonopt-validation) defines required options for `future.read`
* [`lower($t)` above](#canonopt-validation) defines required options for `future.write`
* `memory` is required to be present
* 🚝 - `async` is allowed to be omitted, otherwise it must be present

The implementation of these built-ins funnels down to a single `future_copy`
function that is parameterized by the direction of the copy:
Expand Down
2 changes: 1 addition & 1 deletion design/mvp/Explainer.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ implemented, considered stable and included in a future milestone:
* 🪙: value imports/exports and component-level start function
* 🪺: nested namespaces and packages in import/export names
* 🔀: async
* 🚝: marking some builtins as `async`
* 🚝: enabling more canonical ABI options on more async-related builtins
* 🚟: using `async` with `canon lift` without `callback` (stackful lift)
* 🧵: threading built-ins
* 🧵②: [shared-everything-threads]-based threading built-ins
Expand Down
Loading