Chadtech

Results 51 comments of Chadtech

Hey that looks pretty cool. Ive been in your situation, but I usually had something a bit clunkier, like a function called `buttonAttributes : Bool -> List Attribute`.

I use `maybeCons` all the time. Just yesterday that I made a PR over in `Maybe.Extra` for this function. https://github.com/elm-community/maybe-extra/pull/38 Saying that here for recording keeping in case anyone makes...

Hey @peterszerzo I think this isnt such a good idea for `groupWhile`. It does make it more general, and therefore cover more usecases (which is good) but I think it...

Thanks for the well written proposal tho.

Yes, and I think that is the case, because `cycleLength` comes from the `List.length` of input list. So when `cycleLength` is zero, the input list is returned, which was necessarily...

We now use `elm-verify-examples` as of #115 But I havent looked into the topic of filling out our example coverage.

Nice @pzp1997 ! Looks good to me. Lets do it But regarding the name, I can also see how its confusing. Maybe `rotateMatrixRight` instead?

@Qata A 1-dimensional rotate also sounds good. Someone just needs to make the case for it, show how it helps in practice, and then a PR.

Im not seeing the value in this function to be honest. Assuming good code practices were used, I dont know how you could end up in a circumstance where you...

Awesome. It's some what surprising that we dont have `insertAt` already, considering we have `removeAt` and `updateAt`. I would like to merge this, but I have a few considerations: 0...