Re: Github repos for boot libraries

2017-01-05 Thread Ben Gamari
Edward Kmett writes: > For reference, the master repository for transformers is at > > http://hub.darcs.net/ross/transformers > > We should probably edit the 'website' link for that github repository to at > least point there. > > I don't have access to do so, however. > >

Re: Large tuple strategy

2017-01-05 Thread Reid Barton
OK, I filed https://ghc.haskell.org/trac/ghc/ticket/13072 for this. Regards, Reid Barton On Thu, Jan 5, 2017 at 10:28 AM, Simon Peyton Jones wrote: > | It occurred to me that rather than moving just these instances to a new > | module, we could move the large tuples

RE: Large tuple strategy

2017-01-05 Thread Simon Peyton Jones via ghc-devs
| It occurred to me that rather than moving just these instances to a new | module, we could move the large tuples themselves to a new module | Data.LargeTuple and put the instances there. Yes, that's what I intended to suggest. Good plan. Simon | -Original Message- | From:

Large tuple strategy

2017-01-05 Thread Reid Barton
Hi all, https://phabricator.haskell.org/D2899 proposes adding Generic instances for large tuples (up to size 62). Currently GHC only provides Generic instances for tuples of size up to 7. There's been some concern about the effect that all these instances will have on compilation time for anyone

Re: Contributing Examples to the Documentation

2017-01-05 Thread Oleg Grenrus
See e.g. https://github.com/ghc/ghc/blob/baf9ebe55a51827c0511b3a670e60b9bb3617ab5/libraries/base/Data/Maybe.hs#L84-L101 for an example already in `base`. Relevant ticket: https://ghc.haskell.org/trac/ghc/ticket/11551 - Oleg On 05.01.2017 03:51, Kazu Yamamoto (山本和彦) wrote: > Hi Sunjay, > >> If

Re: Contributing Examples to the Documentation

2017-01-05 Thread Oleg Grenrus
On 05.01.2017 00:01, Ben Gamari wrote: > Sunjay Varma writes: > >> Hi, >> I'm considering contributing examples to the documentation. I wanted to >> start with something like Data.List because it is one of the modules I end >> up using the most. I think a few examples