Path: blob/main/files/en-us/webassembly/reference/numeric/wrap/index.md
6510 views
------{{WebAssemblySidebar}}
The wrap instruction, is used to convert numbers of type i64 to type i32. If the number is larger than what an i32 can hold this operation will wrap, resulting in a different number.
One can think of wrap either as reducing the value mod 232, or as discarding the high 32 bits to produce a value containing just the low 32 bits.
{{EmbedInteractiveExample("pages/wat/wrap.html", "tabbed-taller")}}
Syntax
| Instruction | Binary opcode |
|---|---|
i32.wrap_i64 | 0xa7 |