map list [1 2 3] behaves as desired, producing [[1] [2] [3]]. But, is this guaranteed? I have not been able to deduce it from the documentation. E.g., one might expect to have to use [# -> (list #)] instead of just list. And similarly for multiple lists (more than 2). Of course the existing behavior is much better!
map list [1 2 3]behaves as desired, producing[[1] [2] [3]]. But, is this guaranteed? I have not been able to deduce it from the documentation. E.g., one might expect to have to use[# -> (list #)]instead of justlist. And similarly for multiple lists (more than 2). Of course the existing behavior is much better!