mirror of
https://github.com/status-im/nim-stew.git
synced 2025-01-10 12:16:04 +00:00
11 lines
181 B
Nim
11 lines
181 B
Nim
import
|
|
std/[hashes, typetraits]
|
|
|
|
func hashAllFields*(x: object|tuple): Hash =
|
|
mixin hash
|
|
for f in fields(x):
|
|
result = result !& hash(f)
|
|
result = !$result
|
|
|
|
export hashes
|