diff --git a/core/hashtables/hashtables.factor b/core/hashtables/hashtables.factor index 0f6ad5919c..2c76350194 100644 --- a/core/hashtables/hashtables.factor +++ b/core/hashtables/hashtables.factor @@ -150,6 +150,9 @@ M: hashtable set-at [ 2dup hash@ set-nth-pair ] keep hashtable boa ; inline +: 2hashtable ( value0 key0 value1 key1 -- hash ) + H{ } clone [ set-at ] keep [ set-at ] keep ; inline +