orthecreedence / cl-hash-util

A small hash utility library for Common Lisp
MIT License
29 stars 3 forks source link

Feat: hash-merge #12

Closed kilianmh closed 5 months ago

kilianmh commented 5 months ago

The function hash-merge returns a merged hash-table. If a key occurs more than one time, the first key value is used and subsequent key values are discarded. For keeping the last value of a key, reverse the hash-table order.

See #8

orthecreedence commented 5 months ago

Looks good, thank you!