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

Popular posts from this blog

node.js - Using Node without global install -

How to access a php class file from PHPFox framework into javascript code written in simple HTML file? -

java - Null response to php query in android, even though php works properly -