From 9c0126a01c55c6937bd2a670c219a0df282716d5 Mon Sep 17 00:00:00 2001 From: Al Date: Sun, 19 Apr 2015 09:32:53 -0400 Subject: [PATCH] [utils] two set types in collections.h --- src/collections.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/collections.h b/src/collections.h index bc30946e..e28872c4 100644 --- a/src/collections.h +++ b/src/collections.h @@ -27,6 +27,11 @@ KHASH_MAP_INIT_STR(str_int, uint32_t) KHASH_MAP_INIT_INT(int_str, char *) KHASH_MAP_INIT_STR(str_str, char *) +// Sets + +KHASH_SET_INIT_INT(int_set) +KHASH_SET_INIT_STR(str_set) + // Vectors VECTOR_INIT_NUMERIC(int32_array, int32_t)