Create your own GitHub profile
Sign up for your own profile on GitHub, the best place to host code, manage projects, and build software alongside 50 million developers.
Sign up
Pinned
628 contributions in the last year
Activity overview
Contribution activity
October 2020
Created an issue in Adapton/adapton.rust that received 1 comment
Can't store hashmaps of names in cells; Name could implement Ord
You can't store a HashMap in a cell, because HashMap does not implement Hash.
You could store a BTreeMap<T> in a cell, if T: Ord, because BTreeMap …