How can I convert a C# list into something that's hashable?
Posted
by gatoatigrado
on Stack Overflow
See other posts from Stack Overflow
or by gatoatigrado
Published on 2010-06-17T06:12:08Z
Indexed on
2010/06/17
6:13 UTC
Read the original article
Hit count: 254
I want something along the lines of Python's tuples (or, for sets, frozensets), which are hashable. I have a List<String>
which is most certainly not hashing correctly (i.e. by value).
© Stack Overflow or respective owner