Oliver Searle-Barnes
Oliver Searle-Barnes
There is a pretty nasty hack you can use to get this working. package.json ``` { "scripts": { "test": "rsync -r tests/elm-stuff elm-stuff/generated-code/elm-community/elm-test/elm-stuff && elm-test" } ``` then to deal...
Just came here to request the exact same thing then saw it top of the list. On our project we use unions to model the possible error results from a...
Just ran into this one, indeed the error message is very confusing. `no match of right hand side value: 340` Within the context of phoenix it's also unfortunate controller tests...
google pointed me here to find out how to quit elm-repl, so in a way half the job is done ;)
@marcglasberg I want to ask the compiler to enforce that a field always be a sorted set (rather than be a field which can either be sorted or not sorted)....
> I believe you actually mean it would be better to, instead of having one single `ISet` for all of the configurations, having multiple subclasses such that the compiler could...
I wasn't sure if your last example was supposed to be ```dart class TimelineChartData { ISortedSet glucoseReadings; ISortedSet insulinInjections; TimelineChartData({ @required Extent focusedRange, @required ISortedSet glucoseReadings, @required ISortedSet insulinInjections, });...
> But please note, the sorted/unsorted configuration is only one of the possible configurations for a set. yeah, this had occurred to me and I've been pondering how best to...
I'm new to Dart so I may well be missing something simple, could you give an example of how to subclass `ISet` using the `ConfigSet` options? (or maybe you meant...
Thanks for the pointer @marcglasberg. I was seeing some bugs today relating to the sort order being lost in some places. I switched to using the following instead of a...