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

java - JavaScript + Thymeleaf - select onchange -

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? -