* enum.c (enum_join): added rdoc.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23965 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2009-07-05 23:15:51 +00:00
Родитель 2db8644039
Коммит e86d1ce77e
1 изменённых файлов: 8 добавлений и 0 удалений

8
enum.c
Просмотреть файл

@ -1803,6 +1803,14 @@ enum_cycle(int argc, VALUE *argv, VALUE obj)
return Qnil; /* not reached */
}
/*
* call-seq:
* enum.join(sep=$,) -> str
*
* Returns a string created by converting each element of the
* <i>enum</i> to a string, separated by <i>sep</i>.
*/
static VALUE
enum_join(int argc, VALUE *argv, VALUE obj)
{