Andrew Martin

Results 84 issues of Andrew Martin

I just noticed that this library hasn't seen any commits in a while. If you are interested in accepting any help, I could be a co-maintainer of `thyme`.

This is just a suggestion, and there may be reasons I'm unaware that this wasn't done. I feel like having `WeekDate` and `Month` be data types instead of type synonyms...

In the `colonnade` library, in the [Colonnade.Encoding](http://hackage.haskell.org/package/colonnade-0.4.7/docs/Colonnade-Encoding.html), I use doctest. This causes some of the code examples to end up uglier than they could have. For example (in the `fromMaybe`...

feature request

I use doctests in the [ip](http://hackage.haskell.org/package/ip) package. With version 0.8.7 (and probably with others), running `stack test` causes everything to run successfully. If instead, I run: cabal new-build --enable-tests ./dist-newstyle/build/ip-0.8.7/build/doctest/doctest...

Lately, I've been writing more functions that take an `Attribute` collection as an argument. I'm trying to think of ways to make it easier to users (mostly myself) to call...

I have a piece of code that I've needed recently in two unrelated projects, so I thought I'd see if you would be interested in adding it to `streaming-bytestring`. It's...

The CRLF handling introduced in https://github.com/michaelt/streaming-bytestring/pull/5 is incorrect in a small number of corner cases. When a chunk ends with a `CR` and the next chunk begins with `LF`, `lines`...

For testing to see whether or not a stream is exhausted, there are currently two options. There is `null`, which evaluates all the effects and discards all elements in the...

This isn't really an issue, but @mckeankylej just pointed out to me that we inadvertently [wrote the same library](http://hackage.haskell.org/package/vinyl-plus). In particular, your `Union` is identical to my [`CoRec`](http://hackage.haskell.org/package/vinyl-plus-0.1.0.0/docs/Data-Vinyl-Types.html) and your...