How would I combine the following 2 functions:
replaceNth n newVal (x:xs)
| n == 0 = newVal:xs
| otherwise = x:replaceNth (n-1) newVal xs
replaceMthNth m n v arg = replaceNth m (replaceNth n v (arg !! m)) arg
into a single function?
Is it possible?
replaceMthNthwithout calling other functions? If so, why would you want to do that? It would just complicate the code. – interjay May 3 '11 at 23:05replaceNth mis a new function. – rampion May 4 '11 at 0:47