| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-24 | Remove unnecessary backticks. | Franck Verrot | |
| Dr Markus Kuhn published in 1999 an article [1] explaining in details why we shouldn't use the ASCII grave accent (0x60) as a left quotation. Backticks have been used most notably to produce nice-looking LaTeX documents but it doesn't seem to be an issue on modern platforms and for the oldest ones, there are workarounds as mentioned by Dr Kuhn. [1]: https://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html | |||
| 2015-02-13 | re-implement mrb_float_to_str() | cremno | |
| The new implementation is backwards incompatible, but I couldn't find any usage outside mruby and I also couldn't think of a different and good name. All ISO C99 printf conversion specifiers for floating point numbers and an optional precision are supported. It is largely based on code from the MIT licensed musl libc (http://www.musl-libc.org/) and its floating point printing is exact (unlike the current code behind Float#to_s). | |||
| 2014-11-12 | add Float::{INFINITY,NAN} if available | Yukihiro "Matz" Matsumoto | |
| 2014-10-02 | Pacify MSVC warnings for numeric.c, proc.c, and symbol.c | Hiroshi Mimaki | |
| 2014-08-30 | remove unnecessary MRB_API from mrb_num_div(); close #2578 | Yukihiro "Matz" Matsumoto | |
| 2014-08-26 | Merge pull request #2561 from cubicdaiya/issues/space_EOL | Yukihiro "Matz" Matsumoto | |
| Remove spaces in end-of-line. | |||
| 2014-08-25 | Fix Numeric#pow behavior. | Tatsuhiko Kubo | |
| * Before 2 ** -1 #=> 0 * After 2 ** -1 #=> 0.5 | |||
| 2014-08-25 | Remove spaces in end-of-line. | Tatsuhiko Kubo | |
| 2014-08-15 | Merge pull request #2533 from suzukaze/fix-indents | Yukihiro "Matz" Matsumoto | |
| Fix indents in numeric.c | |||
| 2014-08-15 | Fix indents in numeric.c | Jun Hiroe | |
| 2014-08-15 | Refactor flo_mod func in numeric.c | Jun Hiroe | |
| 2014-08-13 | Remove some roundoff from mrb_flo_to_str | chasonr | |
| 2014-08-13 | remove unnecessary mrb_float casting; ref #2531 | Yukihiro "Matz" Matsumoto | |
| 2014-08-13 | refactor mrb_hash_shift, num_pow, flo_eq, flo_finite_p method | kkkkkt | |
| 2014-08-04 | add MRB_API modifiers to mruby API functions | Yukihiro "Matz" Matsumoto | |
| 2014-07-12 | remove spaces after open parens | Yukihiro "Matz" Matsumoto | |
| 2014-07-09 | Clean up value.h and mrb_value boxing | David Turnbull | |
| 2014-07-04 | Fix type checking in `mrb_flo_to_fixnum`. | take_cheeze | |
| 2014-05-17 | Add comment to Fixnum Class. | yui-knk | |
| 2014-05-13 | Make sure c is large enough if there is an overflow | Carson McDonald | |
| 2014-05-13 | fix overflow error like #2244 on MRB_WORD_BOXING | Yukihiro "Matz" Matsumoto | |
| 2014-05-05 | refactor fix_mod | Akira Kuroda | |
| fix unreachable condition use b | |||
| 2014-05-05 | add function for checked mrb_int subtraction | cremno | |
| 2014-05-05 | add function for checked mrb_int addition | cremno | |
| 2014-05-04 | simply use `isfinite` | cremno | |
| 2014-05-03 | Refactor rshift | Jun Hiroe | |
| 2014-04-30 | remove trailing spaces | Nobuyoshi Nakada | |
| 2014-04-26 | Refactor fix_xor() | Jun Hiroe | |
| 2014-04-26 | Refactor fix_or() | Jun Hiroe | |
| 2014-04-26 | Refactor fix_and() | Jun Hiroe | |
| 2014-04-26 | Refactor flo_finite_p() | Jun Hiroe | |
| 2014-04-16 | Refactor fix_to_f in numeric.c | Jun Hiroe | |
| 2014-04-16 | Refactor lshift in numeric.c | Jun Hiroe | |
| 2014-04-16 | Refactor fix_shift_get_width in numeric.c | Jun Hiroe | |
| 2014-04-15 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-04-13 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2014-04-13 | avoid function style parens after "return"; ref #2055 | Yukihiro "Matz" Matsumoto | |
| 2014-04-13 | Fix indent in bit_coerce | Jun Hiroe | |
| 2014-04-13 | Refactor fix_rshift | Jun Hiroe | |
| 2014-04-13 | Refactor fix_lshift | Jun Hiroe | |
| 2014-04-12 | Refactor fix_rev | Jun Hiroe | |
| 2014-04-12 | simplify Fixnum#== | Yukihiro "Matz" Matsumoto | |
| 2014-04-12 | simplify Numeric#eql? | Yukihiro "Matz" Matsumoto | |
| 2014-04-12 | remove num_equal() that potentially cause infinite loop | Yukihiro "Matz" Matsumoto | |
| 2014-04-11 | Numeric#round takes optinal argument; close #2042 | Yukihiro "Matz" Matsumoto | |
| 2014-03-28 | do not use "to_f" to retrieve floats in mrb_get_args(); close #1965 | Yukihiro "Matz" Matsumoto | |
| 2014-03-21 | Float#round fix bug for infinity and nan cases | ksss | |
| 2014-03-18 | Reduce implicit type casts. | Masaki Muranaka | |
| 2014-03-17 | Merge pull request #1871 from ksss/numeric-plus | Yukihiro "Matz" Matsumoto | |
| fix bug when `0 + other object` | |||
| 2014-03-17 | Merge pull request #1872 from ksss/numeric-mul | Yukihiro "Matz" Matsumoto | |
| fix bug when `0 * other object` | |||
