Sometimes I saw some sample code with the following expression:
example = example' []
or what is the different between:
foldl
foldl'
Thank you
|
Sometimes I saw some sample code with the following expression:
or what is the different between:
Thank you |
|||
|
|
|
In general, the suffixing of a |
|||||||||||||||
|
|
Nothing, at least not in that context, since an apostrophe is a valid identifier character (see this answer for some more detail.) It is a bit of a convention in the standard libraries that a strict version of certain functions is differentiated from the standard (lazy) version by an apostrophe, such as |
|||
|
|
|
In Haskell it is just another character to distinguish identifiers and the identifier is then called |
|||
|
|
|
There's a hackage module (I forget which one) that includes some kind of membership test (or some other predicate) in something. The test function is called "is":
and for convenience the boolean negation of the function is also provided:
I thought it was funny as heck when I first saw it. Apostrophe is just another character in the identifier. |
|||
|
|