aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * string.c (trnext): detect empty range and raise exception.matz2009-10-301-1/+11
* * string.c (rb_str_sub_bang): trivial optimization.nobu2009-10-291-14/+17
* * string.c: rdoc for <=>, casecmpmarcandre2009-10-281-4/+4
* * string.c (chopped_length): get rid of unexpected exception.nobu2009-10-271-2/+2
* fix a typo.akr2009-10-171-1/+1
* * parse.y (rb_intern3): check symbol table overflow.nobu2009-10-151-17/+2
* * string.c (rb_check_string_type): rdoc fix [ruby-core:26084]marcandre2009-10-141-1/+1
* * string.c (rb_str_inspect): copy by chunks.nobu2009-10-071-29/+32
* * string.c (rb_str_inspect): don't assign -1 to unsigned int.naruse2009-10-071-19/+12
* * string.c (rb_str_upto): RDoc updated. a patch from Nobuhiromatz2009-10-061-0/+8
* * array.c (rb_ary_{times, shuffle_bang, sample}): reducing macromatz2009-10-051-11/+16
* Escape as \x{XXXX} other than Unicode chars.naruse2009-09-291-8/+17
* * string.c (rb_str_inspect): dump as \uXXXX when thenaruse2009-09-291-9/+21
* * hash.c (rb_f_getenv): use rb_filesystem_str_new_cstrnaruse2009-09-281-0/+12
* * string.c (str_buf_cat2): optimize since all second arguments arenobu2009-09-271-5/+3
* * string.c (rb_hash_{uint{32,},end}): removed.nobu2009-09-271-8/+0
* String#inspect's encoding should be fixed.naruse2009-09-261-31/+31
* * string.c: use rename-macro instead of RUBY_ALIAS_FUNCTION_TYPE.ko12009-09-261-9/+4
* * st.c: moved murmur hash from string.c. [ruby-dev:39376]nobu2009-09-261-241/+14
* * string.c (hash): updated to MurmurHash 2.0 2009-09-19.nobu2009-09-261-69/+88
* * string.c (rb_hash_start): fixed shift width on 128bit platform.nobu2009-09-261-3/+3
* * string.c (rb_str_upto): keep first width. [ruby-dev:39361]nobu2009-09-231-4/+10
* * string.c: added rdocs for symbol.nobu2009-09-181-0/+88
* * string.c: fixed types.nobu2009-09-181-40/+45
* Use rb_isspace for ASCII-incompatible strings.naruse2009-09-151-4/+4
* * string.c (rb_str_lstrip_bang): use ascii_isspace(). [ruby-dev:39322]matz2009-09-141-5/+5
* * string.c (rb_str_inspect): use rb_enc_mbc_to_codepointnaruse2009-09-141-2/+1
* * include/ruby/st.h (st_hash_func): use st_index_t.nobu2009-09-081-15/+15
* * string.c (rb_str_upto): generate numerical sequence whenmatz2009-08-161-3/+45
* * insns.def, vm.c, vm_insnhelper.c, vm_insnhelper.h: checkko12009-08-121-0/+2
* * string.c (rb_str_new_frozen): must not change encoding of frozennobu2009-08-121-3/+4
* * string.c (tr_trans): change condition of singlebyte optimization.naruse2009-08-011-2/+1
* Can't use singlebyte optimization when the replacement is multibyte. [ruby-c...naruse2009-07-311-1/+2
* * string.c (rb_str_hash_cmp): got rid of overflow.nobu2009-07-181-1/+1
* Check pos and strlen on Regexp#index(str, pos) [ruby-core:23660]naruse2009-07-141-0/+2
* * hash.c (rb_hash_hash): documentation fix. a patch frommatz2009-07-011-8/+13
* * re.c (reg_match_pos): adjust offset based on characters, notmatz2009-06-301-3/+8
* * array.c (rb_ary_memsize): added.ko12009-06-161-0/+11
* * string.c (str_replace_shared): shared target must be frozen.nobu2009-06-111-2/+9
* * string.c (rb_str_gsub_bang): modify check at the beginning.matz2009-06-021-6/+10
* * string.c (rb_str_each_char, rb_str_each_codepoint): stringnobu2009-05-251-2/+3
* * string.c (rb_str_hash): avoid calling rb_enc_str_asciionly_p().matz2009-05-251-24/+31
* * string.c (rb_str_rpartition): ditto.nobu2009-05-241-0/+1
* * string.c (rb_str_partition): should use the converted result. anobu2009-05-241-0/+1
* * string.c (rb_str_each_char): return original string.matz2009-05-231-2/+5
* * string.c (rb_str_count): optimized for 1byte string count bymatz2009-05-211-6/+18
* * encoding.c (rb_enc_fast_mbclen): faster mbclen for strings knownmatz2009-05-201-25/+68
* * encoding.c (rb_enc_codepoint_len): combine rb_enc_codepoint()matz2009-05-191-40/+42
* rdoc update.akr2009-05-091-2/+11
* * string.c, include/ruby/encoding.h: fixed types.nobu2009-05-071-21/+22