Trevor Rothaus

Results 5 issues of Trevor Rothaus

If we have a submodule with: `type Animal = Cat | Dog` we can export Cat and Dog with: `module Submodule (Animal(..)) where` and import with `import Submodule exposing (Animal(..))`...

I restructured a little to make it closer to how gofmt is structured: https://golang.org/src/cmd/gofmt/ Added a doc.go as well I prefer not having it out the package by default, but...

I am really enjoying this zipper library. I was wondering about adding in functionality such as append and cons. I'm not entirely sure what the api design would look like,...

To be honest, I'm not terribly familiar with the elm-test updates but this seems to work. Basically: - removed Main.elm - removed HtmlRunner.elm - ran elm-test init Fixes https://github.com/rtfeldman/elm-workshop/issues/18

We should return an error, instead of panic'ing. Since this is a library, we should let the caller deal with the error. For example, when calling `parse.Recipients()` on a message...