--- name: genList args: [generator, length] --- Generate list of size *length*, with each element *i* equal to the value returned by *generator* `i`. For example, ```nix builtins.genList (x: x * x) 5 ``` returns the list `[ 0 1 4 9 16 ]`.