summaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorshyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-27 07:33:19 +0000
committershyouhei <shyouhei@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2010-08-27 07:33:19 +0000
commitcff3c3d52a5406a61be62c81fc6101c4d514731f (patch)
treeede61c893f7d31c2e2f4f452913b39cfd2a48ceb /string.c
parent0cfe185f39d575f9c620bd14707a81bd5c29fe11 (diff)
* string.c (rb_str_prepend): new method by Sora Harakami
[Feature #3765] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29120 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'string.c')
-rw-r--r--string.c21
1 files changed, 21 insertions, 0 deletions
diff --git a/string.c b/string.c
index d18f47ee46..a0d3b60188 100644
--- a/string.c
+++ b/string.c
@@ -2056,6 +2056,26 @@ rb_str_concat(VALUE str1, VALUE str2)
}
}
+/*
+ * call-seq:
+ * str.prepend(other_str) -> str
+ *
+ * Prepend---Prepend the given string to <i>str</i>.
+ *
+ * a = "world"
+ * a.prepend("hello ") #=> "hello world"
+ * a #=> "hello world"
+ */
+
+static VALUE
+rb_str_prepend(VALUE str, VALUE str2)
+{
+ StringValue(str2);
+ StringValue(str);
+ rb_str_update(str, 0L, 0L, str2);
+ return str;
+}
+
st_index_t
rb_memhash(const void *ptr, long len)
{
@@ -7525,6 +7545,7 @@ Init_String(void)
rb_define_method(rb_cString, "reverse!", rb_str_reverse_bang, 0);
rb_define_method(rb_cString, "concat", rb_str_concat, 1);
rb_define_method(rb_cString, "<<", rb_str_concat, 1);
+ rb_define_method(rb_cString, "prepend", rb_str_prepend, 1);
rb_define_method(rb_cString, "crypt", rb_str_crypt, 1);
rb_define_method(rb_cString, "intern", rb_str_intern, 0);
rb_define_method(rb_cString, "to_sym", rb_str_intern, 0);