summaryrefslogtreecommitdiffstats
path: root/enum.c
diff options
context:
space:
mode:
authordave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-29 03:56:22 +0000
committerdave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2003-12-29 03:56:22 +0000
commit9e946cb38bc03ef1928ddfd9437e8f0884a98bf8 (patch)
treeee31cd1b5d6517811baa2c3d19c3b6b2dab0ae26 /enum.c
parent490294ab01d469b2ca52bb07ae2ef8482c127b99 (diff)
downloadruby-9e946cb38bc03ef1928ddfd9437e8f0884a98bf8.tar.gz
ruby-9e946cb38bc03ef1928ddfd9437e8f0884a98bf8.tar.xz
ruby-9e946cb38bc03ef1928ddfd9437e8f0884a98bf8.zip
Add RDoc for Kernel global functions, tidy array and error
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@5343 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'enum.c')
-rw-r--r--enum.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/enum.c b/enum.c
index 28f28cbd5..ef7fe951c 100644
--- a/enum.c
+++ b/enum.c
@@ -728,6 +728,20 @@ max_ii(i, memo)
return Qnil;
}
+/*
+ * call-seq:
+ * enum.max => obj
+ * enum.max {|a,b| block } => obj
+ *
+ * Returns the object in _enum_ with the maximum value. The
+ * first form assumes all objects implement <code>Comparable</code>;
+ * the second uses the block to return <em>a <=> b</em>.
+ *
+ * a = %w(albatross dog horse)
+ * a.max #=> "horse"
+ * a.max {|a,b| a.length <=> b.length } #=> "albatross"
+ */
+
static VALUE
enum_max(obj)
VALUE obj;