aboutsummaryrefslogtreecommitdiffstats
path: root/string.c
Commit message (Expand)AuthorAgeFilesLines
* * string.c (rb_str_resize): fix indent.nobu2007-07-211-1/+1
* * string.c (rb_str_rindex_m): accept string-like object convertiblenobu2007-07-161-39/+45
* * string.c (rb_str_clear): need to check STR_EMBED_P() beforematz2007-06-261-1/+1
* update document to follow MatchData#inspect implementation.akr2007-06-231-1/+1
* * string.c (rb_str_upto): add optional argument to specifymatz2007-06-221-31/+30
* * include/ruby: moved public headers.nobu2007-06-101-2/+2
* * parse.y, compile.c, gc.c, insns.def, intern.h, iseq.c, node.h,matz2007-02-231-28/+0
* * string.c (rb_str_ord): need not to check string length; ordmatz2007-02-231-5/+0
* * re.c (reg_operand): allow symbols to be operands for regularmatz2007-02-141-0/+8
* * parse.y (rb_compose_ivar2): function to create a new ivar2matz2007-02-041-0/+28
* * ruby.h (SYMBOL_P): make Symbol immediate again for performance. matz2007-02-021-115/+105
* * string.c (rb_str_sub_bang): calling rb_str_modify() should be justusa2007-01-301-1/+1
* * eval_proc.c (rb_proc_new): added.ko12007-01-161-4/+1
* * string.c (rb_str_upto): use RSTRING_LEN().matz2007-01-081-1/+1
* * string.c (rb_str_upto): String#upto from empty string makesmatz2007-01-081-1/+1
* * Merge YARVko12006-12-311-8/+11
* * string.c (rb_str_ord): typo fixed. reported from Korneliusmatz2006-12-211-1/+1
* * string.c (rb_str_slice_bang): rdoc description bug fixed.matz2006-12-211-4/+1
* * string.c (rb_str_aset): index double decode problem.matz2006-12-111-1/+1
* * string.c (Init_String): remove duplicated definition ofmatz2006-11-061-1/+0
* * parse.y (arg_dup_check): vid may be nameless internal id.matz2006-11-061-1/+1
* * string.c: class Symbol is no longer subclass of String. alsomatz2006-11-021-1/+56
* * string.c (hash): use Bob Jenkins' hash algorithm.matz2006-11-011-88/+114
* * string.c (rb_str_upcase, rb_str_downcase, rb_str_downcase,matz2006-10-221-0/+8
* * string.c (rb_str_substr): should be infected with only originalnobu2006-10-221-4/+7
* * string.c (rb_str_each_line): String#lines now works when a blockmatz2006-10-181-25/+20
* * string.c (rb_str_lines): now takes optional argument for thematz2006-10-161-4/+4
* * string.c (rb_str_partition): RDoc update. a patch frommatz2006-10-121-5/+2
* * string.c (rb_str_scan): small documentation fix.matz2006-10-071-1/+1
* * string.c (rb_str_lines): returns an Enumerator instead of anmatz2006-10-021-23/+20
* * string.c (rb_str_startwith): rename startwith? to start_with?,matz2006-09-271-6/+6
* * array.c (rb_ary_shift): shift/unshift performance boost patch,matz2006-09-261-0/+8
* * string.c (rb_str_partition): no need to call rb_call_super(),matz2006-09-221-5/+2
* * string.c (str_new3): embed shorter strings more eagerly.matz2006-09-211-5/+12
* * string.c (rb_str_startwith): a new method to check if a stringmatz2006-09-211-1/+48
* * string.c (Init_String): Strings are no longer Enumerable. usematz2006-09-211-2/+0
* * string.c (rb_str_partition): RDoc typo fixed. [ruby-core:08898]matz2006-09-211-4/+4
* * string.c (rb_str_lines): new method to split a string into lines.matz2006-09-211-0/+37
* * string.c (rb_str_partition): a new method to separate the stringmatz2006-09-201-1/+101
* * string.c (sym_eql): fail early to gain performance.matz2006-09-201-0/+46
* * string.c (rb_str_intern): allow zero length symbols.matz2006-09-141-3/+0
* * string.c (rb_str_intern): raise SecurityError only when $SAFEmatz2006-09-141-5/+3
* * string.c (rb_str_intern): allow symbols to contains nul.matz2006-09-131-5/+4
* * string.c (rb_str_intern): prohibit interning tainted string.matz2006-09-131-0/+3
* * string.c (sym_equal): "sym == str" should compare them asmatz2006-09-101-3/+5
* * file.c (rb_f_test): test(0) should not have any specialmatz2006-09-091-4/+4
* * string.c (str_alloc): should allocate a String object, even whenmatz2006-09-081-1/+3
* * string.c (sym_equal): override. check equivalence.matz2006-09-061-0/+17
* * string.c (Init_String): undef Symbol#new.matz2006-09-021-2/+2
* * string.c (str_to_id): a bug caused by premature optimization.matz2006-09-021-2/+0