MartinSStewart

Results 77 issues of MartinSStewart

I expected List.Nonempty.filter to have this type signature `(a -> Bool) -> Nonempty a -> List a` or `(a -> Bool) -> Nonempty a -> Maybe (Nonempty a)` but instead...

The default max iterations per step can sometimes lead to simulation instabilities. In other cases it's too high and reduces performance. I think it would be useful if there was...

I created a physics simulation and ran it but it appeared to be frozen. I lost a few minutes before realizing that bodies default to the static behavior. Maybe it...

If I decide a match is going too slowly and I change the time between turns, the game will instead stop completely. My guess is that the `NextTurn` task is...

Compiler errors in test files aren't not shown. The expected behavior is for Elmjutsu to underline the error in red and list it in a separate tab like it does...

If I hover my cursor over package modules such as List, Cmd, or Json.Decode then the documentation for that module appears multiple times in the same tooltip. Restarting Atom appears...

bug

The following code prints the error `Expecting Variable at row 1, col 25` in the console ``` type alias NewModel = { aField : SomeType } type SomeType = WithChar...

The following valid code ```elm a = case Nothing of Just _ -> 0 Nothing -> 0 |> List.singleton ``` gets reformatted into ```elm a = case Nothing of Just...

bug

The following app will throw a stack overflow exception on start up when the debugger is enabled. This occurs in both `elm/browser` 1.0.1 and 1.0.2 ```elm module Main exposing (main)...