summaryrefslogtreecommitdiff
path: root/string.c
AgeCommit message (Expand)Author
2007-07-21* string.c (rb_str_resize): fix indent.nobu
2007-07-16* string.c (rb_str_rindex_m): accept string-like object convertiblenobu
2007-06-26* string.c (rb_str_clear): need to check STR_EMBED_P() beforematz
2007-06-23update document to follow MatchData#inspect implementation.akr
2007-06-22* string.c (rb_str_upto): add optional argument to specifymatz
2007-06-10* include/ruby: moved public headers.nobu
2007-02-23* parse.y, compile.c, gc.c, insns.def, intern.h, iseq.c, node.h,matz
2007-02-23* string.c (rb_str_ord): need not to check string length; ordmatz
2007-02-14* re.c (reg_operand): allow symbols to be operands for regularmatz
2007-02-04* parse.y (rb_compose_ivar2): function to create a new ivar2matz
2007-02-02* ruby.h (SYMBOL_P): make Symbol immediate again for performance. matz
2007-01-30* string.c (rb_str_sub_bang): calling rb_str_modify() should be justusa
2007-01-16* eval_proc.c (rb_proc_new): added.ko1
2007-01-08* string.c (rb_str_upto): use RSTRING_LEN().matz
2007-01-08* string.c (rb_str_upto): String#upto from empty string makesmatz
2006-12-31 * Merge YARVko1
2006-12-21* string.c (rb_str_ord): typo fixed. reported from Korneliusmatz
2006-12-21* string.c (rb_str_slice_bang): rdoc description bug fixed.matz
2006-12-11* string.c (rb_str_aset): index double decode problem.matz
2006-11-06* string.c (Init_String): remove duplicated definition ofmatz
2006-11-06* parse.y (arg_dup_check): vid may be nameless internal id.matz
2006-11-02* string.c: class Symbol is no longer subclass of String. alsomatz
2006-11-01* string.c (hash): use Bob Jenkins' hash algorithm.matz
2006-10-22* string.c (rb_str_upcase, rb_str_downcase, rb_str_downcase,matz
2006-10-22* string.c (rb_str_substr): should be infected with only originalnobu
2006-10-18* string.c (rb_str_each_line): String#lines now works when a blockmatz
2006-10-16* string.c (rb_str_lines): now takes optional argument for thematz
2006-10-12* string.c (rb_str_partition): RDoc update. a patch frommatz
2006-10-07* string.c (rb_str_scan): small documentation fix.matz
2006-10-02* string.c (rb_str_lines): returns an Enumerator instead of anmatz
2006-09-27* string.c (rb_str_startwith): rename startwith? to start_with?,matz
2006-09-26* array.c (rb_ary_shift): shift/unshift performance boost patch,matz
2006-09-22* string.c (rb_str_partition): no need to call rb_call_super(),matz
2006-09-21* string.c (str_new3): embed shorter strings more eagerly.matz
2006-09-21* string.c (rb_str_startwith): a new method to check if a stringmatz
2006-09-21* string.c (Init_String): Strings are no longer Enumerable. usematz
2006-09-21* string.c (rb_str_partition): RDoc typo fixed. [ruby-core:08898]matz
2006-09-21* string.c (rb_str_lines): new method to split a string into lines.matz
2006-09-20* string.c (rb_str_partition): a new method to separate the stringmatz
2006-09-20* string.c (sym_eql): fail early to gain performance.matz
2006-09-14* string.c (rb_str_intern): allow zero length symbols.matz
2006-09-14* string.c (rb_str_intern): raise SecurityError only when $SAFEmatz
2006-09-13* string.c (rb_str_intern): allow symbols to contains nul.matz
2006-09-13* string.c (rb_str_intern): prohibit interning tainted string.matz
2006-09-10* string.c (sym_equal): "sym == str" should compare them asmatz
2006-09-09* file.c (rb_f_test): test(0) should not have any specialmatz
2006-09-08* string.c (str_alloc): should allocate a String object, even whenmatz
2006-09-06* string.c (sym_equal): override. check equivalence.matz
2006-09-02* string.c (Init_String): undef Symbol#new.matz
2006-09-02* string.c (str_to_id): a bug caused by premature optimization.matz