
I forgot to thank you and the rest for your tremendous work on this! I know
you said the page is a bit out of date, but I had an idea about
fingerprints you may want to consider if you haven't already. In
particular, the wiki page indicates that TTypeRep would have to be abstract
to prevent fingerprint forgeries, but I don't think that's necessarily
correct. I would think you could instead index the Fingerprint# type with
the type it identifies. You'd probably want to add a new magical
Fingerprinted class to produce fingerprints, and a magic function to use
them. The fingerprints could actually be used completely independently to
improve performance in contexts where the full power of TTypeRep isn't
required. Then the TTyperep nodes could hold Fingerprint#s, but themselves
be concrete. Presumably, Fingerprinted => Typeable. Maybe this idea is
crazy, but I figured I'd put it out there.
BTW, I'm a bit astonished that I managed to come up with pretty much
exactly the same function application mechanism that you gave as the most
basic sort of interface.
On Sep 28, 2015 6:11 PM, "Richard Eisenberg"
And indeed it's a good idea! And indeed it's happening!
See, for example, https://ghc.haskell.org/trac/ghc/wiki/Typeable But that's now a bit out of date.
Simon PJ, Dimitrios Vytiniotis, Stephanie Weirich and I are hard at work writing a paper about all of this, and we expect the results to be in GHC 8.0, with this Dynamic:
data Dynamic where Dynamic :: TypeRep a -> a -> Dynamic
Note that TypeRep is now indexed. This is a breaking change, and I'll admit we haven't worked out the migration path. But we're focused on figuring out, precisely, where we're going before worrying too hard about how, precisely, we shall get there.
But, a much better question from my standpoint is: Why do you care? Why do you use Dynamic? We're actually struggling a bit in the motivation section of the paper and would love to know why you care. :)
Thanks! Richard
On Sep 28, 2015, at 6:03 PM, Roman Cheplyaka
wrote: I suggested this last year, see this thread https://mail.haskell.org/pipermail/libraries/2014-March/022287.html
On 09/29/2015 12:51 AM, David Feuer wrote:
Currently,
data Dynamic = Dynamic TypeRep Obj deriving Typeable where type Obj = Any
As a result, all of the operations must be implemented "by hand" using unsafeCoerce. The more obvious representation these days would seem to be
data Dynamic where Dynamic :: Typeable a => a -> Dynamic
Most of the operations then become trivial applications of Typeable functions. The only exceptions seem to be dynApply and dynApp. That there are exceptions strikes me as quite unfortunate. The easiest fix is inspired by the fact that Data.Dynamic uses
funResultTy :: TypeRep -> TypeRep -> Maybe TypeRep
from Data.Typeable to decide whether to coerce. It seems reasonable to add a more informative version, something like
applyTypeable :: (Typeable f, Typeable a) => proxy f -> proxy a -> (forall b . (Typeable b, f ~ (a -> b)) => r) -> Maybe r
On the other hand, it would be really cool if there were some more general way to get type-level information out of Typeable instances, pattern matching on the type constructors.
_______________________________________________ Libraries mailing list Libraries@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries
_______________________________________________ Libraries mailing list Libraries@haskell.org http://mail.haskell.org/cgi-bin/mailman/listinfo/libraries