add hashing for seqs

This commit is contained in:
Billingsly Wetherfordshire
2013-05-04 03:15:22 -05:00
parent 05fd46cdd1
commit 6aabf9b7dd

View File

@@ -126,3 +126,6 @@ proc hash*(x: float): THash {.inline.} =
var y = x + 1.0
result = cast[ptr THash](addr(y))[]
proc hash*[A](x: seq[A]): THash =
for it in items(x): result = result !& hash(it)
result = !$result