comparison src/proto/list.pro @ 20649:1fa0ace0ba65 v8.2.0878

patch 8.2.0878: no reduce() function Commit: https://github.com/vim/vim/commit/85629985b71035608a37ba3bde86968481490d46 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Jun 1 18:39:20 2020 +0200 patch 8.2.0878: no reduce() function Problem: No reduce() function. Solution: Add a reduce() function. (closes https://github.com/vim/vim/issues/5481)
author Bram Moolenaar <Bram@vim.org>
date Mon, 01 Jun 2020 18:45:03 +0200
parents dcec86d796bc
children 821925509d8c
comparison
equal deleted inserted replaced
20648:78db823f74d0 20649:1fa0ace0ba65
49 void f_count(typval_T *argvars, typval_T *rettv); 49 void f_count(typval_T *argvars, typval_T *rettv);
50 void f_extend(typval_T *argvars, typval_T *rettv); 50 void f_extend(typval_T *argvars, typval_T *rettv);
51 void f_insert(typval_T *argvars, typval_T *rettv); 51 void f_insert(typval_T *argvars, typval_T *rettv);
52 void f_remove(typval_T *argvars, typval_T *rettv); 52 void f_remove(typval_T *argvars, typval_T *rettv);
53 void f_reverse(typval_T *argvars, typval_T *rettv); 53 void f_reverse(typval_T *argvars, typval_T *rettv);
54 void f_reduce(typval_T *argvars, typval_T *rettv);
54 /* vim: set ft=c : */ 55 /* vim: set ft=c : */