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
77291f35
Commit
77291f35
authored
Mar 22, 2014
by
Jun Hiroe
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support multiple values in Enumerable#minmax
parent
5027aaaf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
mrbgems/mruby-enum-ext/mrblib/enum.rb
mrbgems/mruby-enum-ext/mrblib/enum.rb
+5
-3
No files found.
mrbgems/mruby-enum-ext/mrblib/enum.rb
View file @
77291f35
...
...
@@ -355,16 +355,18 @@ module Enumerable
min
=
nil
first
=
true
self
.
each
do
|
val
|
self
.
each
do
|
*
val
|
if
first
val
=
val
.
__svalue
max
=
val
min
=
val
first
=
false
else
if
block
max
=
val
if
block
.
call
(
val
,
max
)
>
0
min
=
val
if
block
.
call
(
val
,
min
)
<
0
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
...
...
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