list:fill

说明:对于元素个数小于 n 的 lst, 用element 补足

用法:
 (list:fill lst n element)

参数:1 lst : 列表;2 n : 整数;3 element : 未识别定义;

返回值:list

示例:
(list:fill '(a b) 4 'c) => '(a b c c)