Phill Sparks
Phill Sparks
@decioferreira the problem with exposing the constructor for a phantom type is that you don't want phantom types to be constructed. It shouldn't harm anything for someone to make a...
A follow up thought, if an Item can be placed on a non-empty Tile then perhaps `lookDown` should return a tuple of `( Maybe Item, Tile )` (e.g., `( Just...
I too would like to be able to create a pull request against another repo. My story: I have a package repo that keeps the generated docs in source control....
Thanks for responding! I actually found that I won't be able to do what I wanted because PR's raised by a fork get a read-only GitHub token so they can't...
> ## OperatorApplication variant If `Application` is renamed like `FunctionCall` then would this make sense as `OperatorCall`? > ## Operator variant > I have no clue what this represents in...
You're right! `PrefixOperator` is a `(-)` or `(::)`. It seems that the `Operator` is the actual operator, instances are created in [src/Elm/Parser/Declarations.elm:583](https://github.com/stil4m/elm-syntax/blob/master/src/Elm/Parser/Declarations.elm#L583). And it comes up a lot in the...
There is [a note in the API docs](https://developers.google.com/calendar/api/v3/reference/events#attendees.responseStatus) about setting `responseStatus` directly, I don't know if this might apply to you here... > **Warning**: If you add an event using...