Noogλe

search input

Function of the day

  • Takes 2 arguments

    generator, length

    Generate list of size length, with each element i equal to the value returned by generator i. For example,

    builtins.genList (x: x * x) 5
    

    returns the list [ 0 1 4 9 16 ].