Leonid Onokhov
Leonid Onokhov
I've done some tests and it seems that adding alignment annotation to Vec4f and Matrix4f help gcc generate better simd code. Adding it to Imath_.h should be easy and will...
If you run nixos then nix-mode distributed as part of nix gets loaded instead of custom one. You can fix that by removing standard load path in your Emacs config.
After 4 months I've found out that I posted comment to wrong issue: [IANA CBOR registry](http://www.iana.org/assignments/cbor-tags/cbor-tags.xhtml) for reference
I think that adding another dumping function with extra `size_t flags` argument would be better.
I believe [async-pool](http://hackage.haskell.org/package/async-pool-0.9.0.2/docs/Control-Concurrent-Async-Pool.html#v:async) package does something like that.
I want to add that postgresql 9.3 has extra fields returned on error which contain same info as parsed by Errors module. So maybe postgresql-simple should take advatage of it...
I would like to note that new [libpq 9.3+](http://www.postgresql.org/docs/9.3/static/libpq-exec.html#LIBPQ-PG-DIAG-SCHEMA-NAME) has all needed fields available in result, so you don't have to parse it (in a hacky way). If @lpsmith no...
The problem with `exceptions` is that `MonadMask` does not allow you to make instances for short-circuiting monads like `ExceptT e m` or `Snap`. However, it is only relevant for `withTransaction`...
You can drop Alternative instance from row parser, then it will know number of fields expected, so you can consume correct number of nulls. Personally I cant imagine when would...
Just found out that this is 5 months old post, and I've misread what @DiegoNolan said. All of the above is for @lpsmith. Another thought - you may want to...