Filler implementation for std Set

This commit is contained in:
dcodeIO
2018-01-15 00:08:06 +01:00
parent 49d29fc9f2
commit f2ba4b4a76
13 changed files with 7637 additions and 3 deletions

View File

@ -214,7 +214,7 @@ export function set_memory(dest: usize, c: u8, n: usize): void {
// based on musl's implementation of memset
// becomes obsolete once https://github.com/WebAssembly/bulk-memory-operations lands
// fill head and tail wwith minimal branching
// fill head and tail with minimal branching
if (!n)
return;
store<u8>(dest, c);