Martin Janiczek

Results 115 comments of Martin Janiczek

We can check the shortcircuiting with Debug.log: Unfortunately Ellie won't allow me to swap a different && instead of the basics one, and during work hours I don't have the...

I agree it would be helpful to end up with a concise list of functions other targets have to implement, _and their types_. :+1: Just want to check - we...

@rupertlssmith I can't edit this PR's code anymore, see #1138 for compilable code.

Maximal JS integer number (applies to Elm too) is 2^53 - 1. 1000^1000 is almost 2^9966. This won't work without unlimited precision integers like [this](http://package.elm-lang.org/packages/gilbertkennen/bigint/latest).

@turboMaCk It runs fine. Perhaps the list was not long enough or the issue was fixed :)

Makes sense! We can probably go without `consecutivePairs`. I was mostly copying the existing API of `uniquePairs : List a -> List (a,a)`. My hunch is that I run into...

I like how ```elm string : Fuzzer Char -> Fuzzer String stringOfLength : Fuzzer Int -> Fuzzer Char -> Fuzzer String ``` gets rid of the `stringWith` "go full bonkers...

@evancz I can try and dust off my math to compute the probabilities :slightly_smiling_face: But I wonder, do you consider this a bug, or just a thing that would happen...

(FWIW, I think the comment about hard depth limit is something worthy of being in the package documentation. It solved my problem.)

I was thinking about putting the note next to `andThen`. Just a reminder about the possibility of infinite recursion. Other functions in the module probably don't have that ability to...