feat(List): rename walkRight to walkBackwards

This commit is contained in:
rvcas 2020-11-23 19:39:30 -05:00
parent 06cb1d1e30
commit d9e906b8fb
9 changed files with 28 additions and 28 deletions

View file

@ -811,7 +811,7 @@ pub fn list_sum<'a, 'ctx, 'env>(
/// List.walkRight : List elem, (elem -> accum -> accum), accum -> accum
#[allow(clippy::too_many_arguments)]
pub fn list_walk_right<'a, 'ctx, 'env>(
pub fn list_walk_backwards<'a, 'ctx, 'env>(
env: &Env<'a, 'ctx, 'env>,
parent: FunctionValue<'ctx>,
list: BasicValueEnum<'ctx>,