Ok. This is the idea. I'll have a list (lets call it listA) something like [a0,a1,a2...] which are gameboard spaces for me to move (like in chess). I want to run a process on all of them (on a0, on a1, ...). This process will return a list of other spaces (when you run it on a0 it will return [b0,c0,..]) for each element in listA. I have to "return" a list with all the process(listA) outputs.
Hope I explained myself. PS. I've tried using my own ideas and with maplist but couldnt make it.