Palmer Paul
Palmer Paul
Can we add the negation of that example as well? i.e. `if then False else True` --> `not `. With regards to the ones where you check for equality explicitly,...
I'll try to look into this issue after Shabbat. It should definitely be possible, as I've seen other sites correctly implement this feature. @blockspeiser mentioned that printing the same sheet...
I believe this is possible as of the "s2 rewrite" last summer. The URL for the example you gave would be https://www.sefaria.org/Genesis.1.1/en/The_Rashi_chumash_by_Rabbi_Shraga_Silverstein?lang=bi.
For reference, the main Haskell REPL, ghci, handles multiline input like so > 1. Begin a new line with :{ > 2. Type in your code. Press enter when you...
Keep in mind that there already is a function for getting the intersection of two sets, namely [`Set.intersect`](http://package.elm-lang.org/packages/elm-lang/core/5.1.1/Set#intersect). Does it make sense to duplicate this functionality for lists? In my...
@Chadtech I like your proposal. My `only` thought (pun intended) is to switch the order of the lists passed to `only` to make partial application and composition easier. I think...
@Chadtech if I now understand `anyMember` correctly, it sounds it like it should be implemented as ``` anyMember list = List.any
I was also playing around with alternate implementations a few days ago but forgot to comment about it. I haven't done any benchmarking but my intuition is that this implementation...
This seems like a good function to have, but I'm not crazy about the name. You should also write some tests for your function in [list-extra/tests/Tests.elm](https://github.com/elm-community/list-extra/blob/master/tests/Tests.elm). I haven't done any...
@jackhp95 Sorry, if I came off as rude earlier. I hope I didn't discourage you from contributing! Submitting PRs is a very rewarding process, and we are here to help...