return to top
source
List.ofFn
Creates a list by applying f to each potential index in order, starting at 0.
f
0
Examples:
List.ofFn (n := 3) toString = ["0", "1", "2"]
List.ofFn (fun i => #["red", "green", "blue"].get i.val i.isLt) = ["red", "green", "blue"]
ofFn on an empty domain is the empty list.
ofFn