An error occurred fetching the project authors.
- 24 Mar, 2021 4 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
This function handles zero division properly. Also fixed bugs that multiply numbers instead of division.
-
Yukihiro "Matz" Matsumoto authored
-
- 22 Mar, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 20 Mar, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 19 Mar, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
- define `MRB_TT_RATIONAL` - change object structure (`struct RRational`) - add memory management for `MRB_TT_RATIONAL` - avoid operator overloading as much as possible - implement division overloading in C - as a result, performance improved a lot
-
- 08 Feb, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 27 Jan, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 26 Jan, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
This reverts commit dc51d89a.
-
- 25 Jan, 2021 3 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 24 Jan, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 22 Jan, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Instead of including `mruby/presym.h` everywhere, we provided the fallback `mruby/presym.inc` under `include/mruby` directory, and specify `-I<build-dir>/include` before `-I<top-dir>/include` in `presym.rake`. So even when someone drops `-I<build-dir>/include` in compiler options, it just compiles without failure.
-
- 13 Jan, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 12 Jan, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 11 Jan, 2021 1 commit
-
-
KOBAYASHI Shuji authored
Addressed an issue where existing programs linking `libmruby.a` could only be built by adding `<build-dir>/include` to compiler's include path.
-
- 10 Jan, 2021 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
`1L` on Windows means `32 bit int`.
-
- 09 Jan, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 02 Jan, 2021 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 24 Dec, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 15 Dec, 2020 1 commit
-
-
John Bampton authored
Lint
-
- 26 Nov, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 17 Nov, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 04 Nov, 2020 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 12 Oct, 2020 9 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
- Implement `Rational()` in `C`. - Use `float` to `rational` conversion function taken from: https://rosettacode.org/wiki/Convert_decimal_number_to_rational#C
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Where fixnum overflow can happen.
-
Yukihiro "Matz" Matsumoto authored
- Integrate `Fixnum` and `Integer` - Remove `Integral` - `int / int -> int` - Replace `mrb_fixnum()` to `mrb_int()` - Replace `mrb_fixnum_value()` to `mrb_int_value()`. - Use `mrb_integer_p()` instead of `mrb_fixnum_p()`
-
dearblue authored
* The `Fixnum` constant is now an alias for the `Integer` class. * Remove `struct mrb_state::fixnum_class` member. If necessary, use `struct mrb_state::integer_class` instead.
-
Yukihiro "Matz" Matsumoto authored
- `MRB_WITHOUT_FLOAT` => `MRB_NO_FLOAT` - `MRB_USE_FLOAT` => `MRB_USE_FLOAT32` The former is to use `USE_XXX` naming convention. The latter is to make sure `float` is 32bit float and not floating point number in general.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 04 Jun, 2020 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-