view 98076 @ 4635:3cc0446fb905

<kmc> addquote <zzo38> That is not the point of URLs and if you do not want URL of each file, don\'t use a webpage at all and just make a telnet or whatever.
author HackBot
date Sat, 10 May 2014 03:59:13 +0000
parents b70362a4c382
children
line wrap: on
line source

-- Hi everyone!
-- Could please someone explain me an output of the function:

splitEvery n list = first : ( splitEvery n rest )
    where (first, rest) = splitAt n list

-- it returns a lis of lists splitEvery :: Int -> [a] -> [[a]]
-- But I don't understand how it works, why it returns list of lists.
-- splitAt returns TUPLE and "first" is somehow joined to it.