summaryrefslogtreecommitdiffhomepage
path: root/src/hash.c
AgeCommit message (Expand)Author
2013-03-02Adjust some indentsMATSUMOTO Ryosuke
2013-03-01Remove unused structures.Masaki Muranaka
2013-02-27Remove freeze leftoversbrainopia
2013-02-26Clean code up.Masaki Muranaka
2013-02-24Remove commented out code. Remove redundant function calls.Masaki Muranaka
2013-02-03Fix potential bug about Hash.Masamitsu MURASE
2013-01-10add mrb_check_hash_typeskandhas
2012-11-30Stop warning: extra ';' outside of a functionRyunosuke SATO
2012-11-14make mrb_hash_keys() non static functionYukihiro Matz Matsumoto
2012-11-04add new predicates mrb_string_p(),mrb_array_p(),mrb_hash_p()Yukihiro Matz Matsumoto
2012-10-23do not touch h from Hash when h might be NULLYukihiro Matsumoto
2012-08-26Publish mrb_hash_delete_key.Masamitsu MURASE
2012-07-29mrb_hash_delete_key(), mrb_hash_keys() : Declare as static.Masaki Muranaka
2012-07-29Remove commented out code.Masaki Muranaka
2012-07-28Protect deleted key and value from GC.Masamitsu MURASE
2012-07-14Remove unnecessary header inclusionJunji Sawada
2012-07-13less <stdio.h>Yukihiro Matsumoto
2012-06-27sizeof("a") is bigger by one than strlen("a")Yukihiro Matsumoto
2012-06-23reduce calling mrb_str_new_cstr() to avoid strlen(); #301Yukihiro Matsumoto
2012-06-21dislose mrb_hash_keys; close #304Yukihiro Matsumoto
2012-06-21reduce calling of strlen(); #301Yukihiro Matsumoto
2012-06-19split declaration and definition for 'khash_xxx'.crimsonwoods
2012-06-15Remove some redundant code.Masaki Muranaka
2012-06-03remove unsafe macros in hash.hYukihiro Matsumoto
2012-06-02simpler implementation of Hash#empty?Yukihiro Matsumoto
2012-06-02hash->ht might be NULL; it shouldn't thoughYukihiro Matsumoto
2012-06-02hash->ht might be NULL; it shouldn't thoughYukihiro Matsumoto
2012-06-02naming convention consistency for hash.hYukihiro Matsumoto
2012-06-02refactoring around mrb_hash_newYukihiro Matsumoto
2012-06-01remove unnecessary header inclusion from hash.cYukihiro Matsumoto
2012-06-01small refactoring; hash->ht should not be NULLYukihiro Matsumoto
2012-06-01values need not to dup unlike keysYukihiro Matsumoto
2012-06-01stop using mrb_exec_recursive_paired() from Hash#==Yukihiro Matsumoto
2012-06-01hash function should use #eql? internallyYukihiro Matsumoto
2012-06-01hash function should use #hash internallyYukihiro Matsumoto
2012-06-01add inline to KHASH_INIT functionsYukihiro Matsumoto
2012-05-30stop duping values from Hash#valuesYukihiro Matsumoto
2012-05-30specify allocating array size for Hash#valuesYukihiro Matsumoto
2012-05-28Hash#keys stop duping keysYukihiro Matsumoto
2012-05-24made mrb_get_args() better (optinal args, type checks); close #173 #176Yukihiro Matsumoto
2012-05-23cast style consistencyYukihiro Matsumoto
2012-05-20More C++ compilability work: mrb_obj_alloc void* conversionsMitchell Blank Jr
2012-05-20Merge pull request #169 from mitchblank/cplusplusYukihiro "Matz" Matsumoto
2012-05-20use mrb_assoc_new to generate a key-value pairYukihiro Matsumoto
2012-05-19fix mrb_gc_mark_ht_size() and mrb_gc_free_ht() typesMitchell Blank Jr
2012-05-20Fix Hash#shift return value from Hash to ArrayDaniel Bovensiepen
2012-05-09remove __APPLE__Yukihiro Matsumoto
2012-05-09partial VC supportYukihiro Matsumoto
2012-05-06Time class available; based on code from @beoran; sorry for jumbo patchYukihiro Matsumoto
2012-05-05more hash refactoredYukihiro Matsumoto