aboutsummaryrefslogtreecommitdiff
path: root/test-suite/tests/spanned-impls.rs
AgeCommit message (Collapse)AuthorLines
2021-03-21hilarious and original jokeHEADmainMelody Horn-1/+1
2019-10-25 Spanned: impl PartialEq, Eq, Hash, PartialOrd, Ord in terms of the value (#344)est31-0/+41
* Spanned: impl PartialEq, Eq, Hash, PartialOrd, Ord in terms of the value This is because we want to be able to index into HashMap<Spanned<String>, T> with a dummy span and get results where only the content has to match. * Add Borrow impl * Add tests