0.0.11
Make Hdt generic over the type of string pointer to use (Box, Rc or Arc).
This can save memory by reusing triple elements for certain triple patterns.
For example, triples_with_sp with a result of one million triples would allocate 3 million strings using Box but only 1 million and 2 strings using Rc.
In multi threaded environments, use Arc instead.