summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-numeric-ext/src/numeric_ext.c
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2017-12-26 09:42:34 +0900
committerYukihiro "Matz" Matsumoto <[email protected]>2017-12-26 09:42:34 +0900
commit3d7141b7fedf87a69b891d95deaccc9428d00cde (patch)
tree52d73b112a105cac8d8c0a7e012b1388fe8ef76b /mrbgems/mruby-numeric-ext/src/numeric_ext.c
parentad17ba0e11cd3b3c6031efe9e7710a9310ff0304 (diff)
downloadmruby-3d7141b7fedf87a69b891d95deaccc9428d00cde.tar.gz
mruby-3d7141b7fedf87a69b891d95deaccc9428d00cde.zip
Move `Intefer#chr` to `Integral#chr`.
Since mruby mixes `Integer` and `Float`, integer operations have been moved to `Integral` module.
Diffstat (limited to 'mrbgems/mruby-numeric-ext/src/numeric_ext.c')
-rw-r--r--mrbgems/mruby-numeric-ext/src/numeric_ext.c25
1 files changed, 23 insertions, 2 deletions
diff --git a/mrbgems/mruby-numeric-ext/src/numeric_ext.c b/mrbgems/mruby-numeric-ext/src/numeric_ext.c
index f71236a32..bd636517d 100644
--- a/mrbgems/mruby-numeric-ext/src/numeric_ext.c
+++ b/mrbgems/mruby-numeric-ext/src/numeric_ext.c
@@ -1,13 +1,34 @@
#include <limits.h>
#include <mruby.h>
+static inline mrb_int
+to_int(mrb_value x)
+{
+ double f;
+
+ if (mrb_fixnum_p(x)) return mrb_fixnum(x);
+ f = mrb_float(x);
+ return (mrb_int)f;
+}
+
+/*
+ * Document-method: Integer#chr
+ * call-seq:
+ * int.chr -> string
+ *
+ * Returns a string containing the character represented by the +int+'s value
+ * according to +encoding+.
+ *
+ * 65.chr #=> "A"
+ * 230.chr #=> "\xE6"
+ */
static mrb_value
mrb_int_chr(mrb_state *mrb, mrb_value x)
{
mrb_int chr;
char c;
- chr = mrb_fixnum(x);
+ chr = to_int(x);
if (chr >= (1 << CHAR_BIT)) {
mrb_raisef(mrb, E_RANGE_ERROR, "%S out of char range", x);
}
@@ -19,7 +40,7 @@ mrb_int_chr(mrb_state *mrb, mrb_value x)
void
mrb_mruby_numeric_ext_gem_init(mrb_state* mrb)
{
- struct RClass *i = mrb_class_get(mrb, "Integer");
+ struct RClass *i = mrb_module_get(mrb, "Integral");
mrb_define_method(mrb, i, "chr", mrb_int_chr, MRB_ARGS_NONE());
}