haskell - Multiple parameters of a function -
how give
break (== ' ') xxs multiple boolean parameters without changing definition? or inevitable. instance
break (== (' ' || '\t' || '\n')) xss foldl , foldr 1 way, here not applicable, or @ least haven't been able use them.
is looking for?
break (\x -> x == ' ' || x == '\t' || x == '\n') xss
Comments
Post a Comment