Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mruby
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
mruby
Commits
bbee56f2
Commit
bbee56f2
authored
Mar 23, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1915 from suzukaze/add-enum.minmax
Add Enumerable#minmax
parents
76b2ba88
77291f35
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
45 additions
and
0 deletions
+45
-0
mrbgems/mruby-enum-ext/mrblib/enum.rb
mrbgems/mruby-enum-ext/mrblib/enum.rb
+39
-0
mrbgems/mruby-enum-ext/test/enum.rb
mrbgems/mruby-enum-ext/test/enum.rb
+6
-0
No files found.
mrbgems/mruby-enum-ext/mrblib/enum.rb
View file @
bbee56f2
...
...
@@ -335,4 +335,43 @@ module Enumerable
end
min
end
##
# call-seq:
# enum.minmax -> [min, max]
# enum.minmax { |a, b| block } -> [min, max]
#
# Returns two elements array which contains the minimum and the
# maximum value in the enumerable. 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.minmax #=> ["albatross", "horse"]
# a.minmax { |a, b| a.length <=> b.length } #=> ["dog", "albatross"]
def
minmax
(
&
block
)
max
=
nil
min
=
nil
first
=
true
self
.
each
do
|*
val
|
if
first
val
=
val
.
__svalue
max
=
val
min
=
val
first
=
false
else
if
block
max
=
val
.
__svalue
if
block
.
call
(
*
val
,
max
)
>
0
min
=
val
.
__svalue
if
block
.
call
(
*
val
,
min
)
<
0
else
val
=
val
.
__svalue
max
=
val
if
(
val
<=>
max
)
>
0
min
=
val
if
(
val
<=>
min
)
<
0
end
end
end
[
min
,
max
]
end
end
mrbgems/mruby-enum-ext/test/enum.rb
View file @
bbee56f2
...
...
@@ -84,3 +84,9 @@ end
assert
(
"Enumerable#min_by"
)
do
assert_equal
"dog"
,
%w[albatross dog horse]
.
min_by
{
|
x
|
x
.
length
}
end
assert
(
"Enumerable#minmax"
)
do
a
=
%w(albatross dog horse)
assert_equal
[
"albatross"
,
"horse"
],
a
.
minmax
assert_equal
[
"dog"
,
"albatross"
],
a
.
minmax
{
|
a
,
b
|
a
.
length
<=>
b
.
length
}
end
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment