Move BLOB concat and push to builtin.

This commit is contained in:
Stephen Chung
2021-12-18 15:37:20 +08:00
parent 82d3375fc0
commit 0ae4d14a62
3 changed files with 63 additions and 17 deletions

View File

@@ -172,7 +172,7 @@ mod array_functions {
.checked_abs()
.map_or(0, |n| arr_len - (n as usize).min(arr_len))
} else if start as usize >= array.len() {
array.extend(replace.into_iter());
array.extend(replace);
return;
} else {
start as usize