Just try and read these two statements:
> "hello" `startsWith` "hello world"
true
And:
> "hello world" `startsWith` "hello"
false
I would expect the opposite results. It seems to break the standard pattern in Haskell and Purescript whereby the infix notation should read legibly as a sentence.
Just try and read these two statements:
And:
I would expect the opposite results. It seems to break the standard pattern in Haskell and Purescript whereby the infix notation should read legibly as a sentence.