drathier
drathier
The paper http://myerslab.mpi-cbg.de/wp-content/uploads/2014/06/np_diff.pdf mentions that N ≥ M. I haven't read it all. This library doesn't seem to reorder arguments such that one is always greater than or equal to...
go-nyet does not like the new style for range loops: for range myChan { } but does not complain about for _ = range myChan { } see https://golang.org/doc/go1.4#forrange
Rounding: `truncate` truncates to 32bit, but `floor`, `ceil` and `round` don't. Operators: `//` truncates to 32bit, but `+`, `-`, `*`, `^`, `modBy`, `remainderBy` don't. Bitwise operators truncate to 32bit. `Json.Decode.int`...
`Char.toUpper` handles non-ascii letters, such as `åäö` -> `ÅÄÖ`, but `Char.isUpper` only handles ascii a-z. I expect them to agree on what characters are upper case. Same with `Char.toLower` and...
There is no mention that any function in Bitwise truncates its argument.
If you run elm-make for the first time, and don't approve of the upgrade plan, it claims that it didn't change anything, but It still writes the template elm-package.json. https://github.com/elm-lang/elm-package/blob/1a364bccd08f2859f8572d63c2ad5029b6c70ffe/src/Install.hs#L78...
`Some new packages are needed.` is printed, even though the upgrade plan only involves removing packages. ``` $ elm package install rtfeldman/html-test-runner To install rtfeldman/html-test-runner I would like to add...
# NOTE: Read the last comments before looking at code! **Description of the change** Goal: I wanted to get closer to the compilation performance of the Elm compiler. This is...
## Summary We should support nested block comments, i.e. `{- {- test -} -}` should parse as a single block comment containing `{- test -}`. Currently it would contain `{-...