diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-14 19:55:34 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2009-02-14 19:55:34 +0000 |
commit | e722ad99d5b0e6a9bb0249ff3d9c8cce28d3204e (patch) | |
tree | 704a4bf758367e8c8b7100dd0cb2c5e8dd26c6b9 /include | |
parent | a48f90b05b654cc98727a91c5fd9952c5a86221c (diff) | |
download | bundler-e722ad99d5b0e6a9bb0249ff3d9c8cce28d3204e.tar.gz |
* string.c (rb_hash_uint32, rb_hash_uint, rb_hash_start, rb_hash_end),
include/ruby/intern.h: add Murmurhash API. [ruby-dev:37784]
* complex.c (nucomp_hash), array.c (rb_ary_hash), time.c (time_hash),
string.c (rb_str_hsah), object.c (rb_obj_hash), range.c
(range_hash), struct.c (rb_struct_hash), hash.c (rb_any_hash),
rational.c (nurat_hash): use Murmurhash. [ruby-dev:37784]
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@22317 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'include')
-rw-r--r-- | include/ruby/intern.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/ruby/intern.h b/include/ruby/intern.h index e268428579..d39a9352c4 100644 --- a/include/ruby/intern.h +++ b/include/ruby/intern.h @@ -610,6 +610,10 @@ VALUE rb_str_cat2(VALUE, const char*); VALUE rb_str_append(VALUE, VALUE); VALUE rb_str_concat(VALUE, VALUE); int rb_memhash(const void *ptr, long len); +unsigned int rb_hash_start(unsigned int); +unsigned int rb_hash_uint32(unsigned int, unsigned int); +unsigned int rb_hash_uint(unsigned int, unsigned int); +unsigned int rb_hash_end(unsigned int); int rb_str_hash(VALUE); int rb_str_hash_cmp(VALUE,VALUE); int rb_str_comparable(VALUE, VALUE); |