mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 07:14:46 +00:00
feat(List): rename walkRight to walkBackwards
This commit is contained in:
parent
06cb1d1e30
commit
d9e906b8fb
9 changed files with 28 additions and 28 deletions
|
@ -1,7 +1,7 @@
|
|||
use crate::llvm::build_list::{
|
||||
allocate_list, empty_list, empty_polymorphic_list, list_append, list_concat, list_contains,
|
||||
list_get_unsafe, list_join, list_keep_if, list_len, list_map, list_prepend, list_repeat,
|
||||
list_reverse, list_set, list_single, list_sum, list_walk_right,
|
||||
list_reverse, list_set, list_single, list_sum, list_walk_backwards,
|
||||
};
|
||||
use crate::llvm::build_str::{
|
||||
str_concat, str_count_graphemes, str_len, str_split, str_starts_with, CHAR_LAYOUT,
|
||||
|
@ -2501,7 +2501,7 @@ fn run_low_level<'a, 'ctx, 'env>(
|
|||
|
||||
let (default, default_layout) = load_symbol_and_layout(env, scope, &args[2]);
|
||||
|
||||
list_walk_right(
|
||||
list_walk_backwards(
|
||||
env,
|
||||
parent,
|
||||
list,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue