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
91a025b1
Commit
91a025b1
authored
May 19, 2014
by
Yukihiro "Matz" Matsumoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reimplement Range#size using double with fixing corner cases; ref #2293
parent
90fa5476
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
29 additions
and
15 deletions
+29
-15
mrbgems/mruby-range-ext/src/range.c
mrbgems/mruby-range-ext/src/range.c
+29
-15
No files found.
mrbgems/mruby-range-ext/src/range.c
View file @
91a025b1
#include "mruby.h"
#include "mruby/range.h"
#include <math.h>
static
mrb_bool
r_le
(
mrb_state
*
mrb
,
mrb_value
a
,
mrb_value
b
)
...
...
@@ -136,26 +137,39 @@ static mrb_value
mrb_range_size
(
mrb_state
*
mrb
,
mrb_value
range
)
{
struct
RRange
*
r
=
mrb_range_ptr
(
range
);
mrb_value
beg
,
end
,
end_f
;
mrb_bool
dec
=
TRUE
;
mrb_value
beg
,
end
;
double
beg_f
,
end_f
;
mrb_bool
num_p
=
TRUE
;
beg
=
r
->
edges
->
beg
;
end
=
r
->
edges
->
end
;
if
(
mrb_
obj_is_kind_of
(
mrb
,
beg
,
mrb
->
float_class
))
{
beg
=
mrb_funcall
(
mrb
,
beg
,
"to_i"
,
0
);
if
(
mrb_
fixnum_p
(
beg
))
{
beg
_f
=
(
double
)
mrb_fixnum
(
beg
);
}
if
(
mrb_obj_is_kind_of
(
mrb
,
end
,
mrb
->
float_class
))
{
end_f
=
end
;
end
=
mrb_funcall
(
mrb
,
end
,
"to_i"
,
0
);
if
(
r
->
excl
&&
mrb_obj_eq
(
mrb
,
mrb_funcall
(
mrb
,
end_f
,
"=="
,
1
,
end
),
mrb_false_value
()))
{
dec
=
FALSE
;
}
else
if
(
mrb_float_p
(
beg
))
{
beg_f
=
mrb_float
(
beg
);
}
else
{
num_p
=
FALSE
;
}
if
(
mrb_fixnum_p
(
end
))
{
end_f
=
(
double
)
mrb_fixnum
(
end
);
}
if
(
mrb_obj_is_kind_of
(
mrb
,
beg
,
mrb
->
fixnum_class
)
&&
mrb_obj_is_kind_of
(
mrb
,
end
,
mrb
->
fixnum_class
))
{
mrb_int
end_i
=
mrb_fixnum
(
end
);
if
(
r
->
excl
&&
dec
)
end_i
--
;
return
mrb_fixnum_value
(
end_i
-
mrb_fixnum
(
beg
)
+
1
);
else
if
(
mrb_float_p
(
end
))
{
end_f
=
mrb_float
(
end
);
}
else
{
num_p
=
FALSE
;
}
if
(
num_p
)
{
double
f
;
if
(
beg_f
>
end_f
)
return
mrb_fixnum_value
(
0
);
f
=
end_f
-
beg_f
;
if
(
!
r
->
excl
)
{
return
mrb_fixnum_value
((
mrb_int
)
ceil
(
f
+
1
));
}
return
mrb_fixnum_value
((
mrb_int
)
ceil
(
f
));
}
return
mrb_nil_value
();
}
...
...
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