Right now I coded EventHash to work with BTree* structures because order is important in certain situations.
However, that means I used BTree* structures where Hash* structures would have been more efficient. If we implement the trait Hash in EventHash we can use both where it makes sense.
Right now I coded
EventHash
to work withBTree*
structures because order is important in certain situations.However, that means I used
BTree*
structures whereHash*
structures would have been more efficient. If we implement the traitHash
inEventHash
we can use both where it makes sense.