this is a really basic question I know, I am a begginer in Haskell. So, I am wondering how to "take" the lists from a function like:
putStr( f [[1,2,3],[4,5,6],[6,7,8]])
I don't know if I am expressing this correctly, but I want to create a function f that takes this type:
type Matrix a = [[a]]
type IntMat = Matrix Integer
and then does some things on each "row" of the matrix, nameley the inner lists.
The thing is, I am not quite sure as to how to address them! :S If I am not making ANY sense at all, please ask me to explain!
Thank you in advance!
map- that's a good function to begin with. – Jakub Hampl Nov 7 '10 at 18:29