mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #968 from kouki-o-iij/pr-mrbgem-numeric-ext
add mrbgems/ext/mruby-numeric, and method: Integer#chr
This commit is contained in:
@@ -26,6 +26,9 @@ MRuby::Build.new do |conf|
|
||||
# Use extensional String class
|
||||
conf.gem 'mrbgems/mruby-string-ext'
|
||||
|
||||
# Use extensional Numeric class
|
||||
conf.gem 'mrbgems/mruby-numeric-ext'
|
||||
|
||||
# Generate binaries
|
||||
# conf.bins = %w(mrbc mruby mirb)
|
||||
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
MRuby::Gem::Specification.new('mruby-numeric-ext') do |spec|
|
||||
spec.license = 'MIT'
|
||||
spec.authors = 'mruby developers'
|
||||
end
|
||||
@@ -0,0 +1,30 @@
|
||||
#include "mruby.h"
|
||||
#include "mruby/numeric.h"
|
||||
|
||||
static mrb_value
|
||||
mrb_int_chr(mrb_state *mrb, mrb_value x)
|
||||
{
|
||||
mrb_int chr;
|
||||
char c;
|
||||
|
||||
chr = mrb_fixnum(x);
|
||||
if (chr >= (1 << CHAR_BIT)) {
|
||||
mrb_raisef(mrb, E_RANGE_ERROR, "%ld out of char range", chr);
|
||||
}
|
||||
c = (char)chr;
|
||||
|
||||
return mrb_str_new(mrb, &c, 1);
|
||||
}
|
||||
|
||||
void
|
||||
mrb_mruby_numeric_ext_gem_init(mrb_state* mrb)
|
||||
{
|
||||
struct RClass *i = mrb_class_get(mrb, "Integer");
|
||||
|
||||
mrb_define_method(mrb, i, "chr", mrb_int_chr, ARGS_NONE());
|
||||
}
|
||||
|
||||
void
|
||||
mrb_mruby_numeric_ext_gem_final(mrb_state* mrb)
|
||||
{
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
##
|
||||
# Numeric(Ext) Test
|
||||
|
||||
assert('Integer#chr') do
|
||||
assert_equal(65.chr, "A")
|
||||
assert_equal(0x42.chr, "B")
|
||||
|
||||
# multibyte encoding (not support yet)
|
||||
assert_raise(RangeError) { 12345.chr }
|
||||
end
|
||||
Reference in New Issue
Block a user