| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-26 | resolve conflict | Yukihiro "Matz" Matsumoto | |
| 2014-02-25 | avoid accessing uninitialized string; ref ac936fc | Yukihiro "Matz" Matsumoto | |
| 2014-02-23 | move declaration to the top of the block; ref #1727 | Yukihiro "Matz" Matsumoto | |
| 2014-02-22 | preserve significands in float-string conversion | h2so5 | |
| 2014-02-22 | powered num may be infinite in float-string conversion | Yukihiro "Matz" Matsumoto | |
| 2014-02-18 | mrb_flo_to_str: internal linkage | cremno | |
| 2014-02-17 | more mrb_flo_to_str fixes | cremno | |
| - remove float check (take mrb_float instead of mrb_value) - support -0.0 - fix range error if log10 is called when n == 0.0 - MSVC older than 2013: add signbit macro (for double) | |||
| 2014-02-17 | use double instead of mrb_float (that may be single precision float) to ↵ | Yukihiro "Matz" Matsumoto | |
| reduce errors | |||
| 2014-02-17 | remove trailing zeros from float string representation | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | define FLO_EPSILON depends on float/double | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | remove max_digit from mrb_flo_to_str() | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | small refactoring; direct return | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | use powf() instead of pow() on MRB_USE_FLOAT | Yukihiro "Matz" Matsumoto | |
| 2014-02-17 | fdigit may be negative due to error if mrb_float is 32bit (e.g. 10**36 on ↵ | Yukihiro "Matz" Matsumoto | |
| 32bit arch); ref #1713 #1714 | |||
| 2014-02-17 | fix mrb_flo_to_str() exponent problem | h2so5 | |
| 2014-02-15 | modify mrb_to_str() in order to display big float number | takkaw | |
| 2014-02-09 | Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE | Yukihiro "Matz" Matsumoto | |
| use mrb_bool, FALSE and TRUE more | |||
| 2014-02-06 | Merge pull request #1688 from cubicdaiya/issues/unnecessary_semicolon | Yukihiro "Matz" Matsumoto | |
| Remove unnecessary semicolon | |||
| 2014-02-06 | remove unnecessary semicolon | cubicdaiya | |
| 2014-02-06 | use mrb_str_new_lit() more widely | Yukihiro "Matz" Matsumoto | |
| 2014-02-03 | add Float#nan? | Tomoyuki Sahara | |
| 2014-01-31 | use mrb_bool, FALSE and TRUE more | cremno | |
| It doesn't matter to me if one is using FALSE/TRUE instead of 1/0 but I prefer a type (alias) which emphasizes boolean vars to int. I changed 1/0 to FALSE/TRUE anyway. | |||
| 2014-01-02 | remove various preprocessor conditionals | cremno | |
| - HAVE_IEEEFP_H is nowhere defined or needed at all - FreeBSD < 4 is unsupported since years - MSVC workaround (around what exactly?) | |||
| 2013-12-19 | Fix typo from expornent to exponent | Nobuhiro Iwamatsu | |
| Signed-off-by: Nobuhiro Iwamatsu <[email protected]> | |||
| 2013-11-09 | Change supress to suppress | Carson McDonald | |
| 2013-10-23 | fix #1542 | fleuria | |
| 2013-10-22 | move some methods to make floats and integers compatible [mruby special] | Yukihiro "Matz" Matsumoto | |
| 2013-10-22 | implement some Numeric methods in Ruby | Yukihiro "Matz" Matsumoto | |
| 2013-10-21 | implement Integer#succ in Ruby | Yukihiro "Matz" Matsumoto | |
| 2013-10-20 | Fixnum#succ may overflow | Yukihiro "Matz" Matsumoto | |
| 2013-08-07 | class.c and numeric.c: fixed MSVC warnings | Cremno | |
| 2013-07-25 | replace assert with mrb_assert | fleuria | |
| 2013-07-22 | change else formatting | Yukihiro "Matz" Matsumoto | |
| 2013-07-06 | Change width to size_t to fix warning | Carson McDonald | |
| 2013-06-08 | new is removed from Integer so doesn't need to be removed again in Fixnum | Carson McDonald | |
| 2013-05-26 | Add MRB_WORD_BOXING mode (represent mrb_value as a word) | kimu_shu | |
| 2013-04-25 | rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206 | Yukihiro "Matz" Matsumoto | |
| 2013-03-31 | Integer.round have no arg. | Masaki Muranaka | |
| 2013-03-31 | Remove unused functions. | Masaki Muranaka | |
| 2013-03-31 | Move Integer.{floor,ceil,round,truncate} to mrblib/. For maintainability. | Masaki Muranaka | |
| 2013-03-31 | revive #to_int | Yukihiro "Matz" Matsumoto | |
| 2013-03-30 | move to_i from fixnum to integer; remove reference of to_int which is not in ISO | Yukihiro "Matz" Matsumoto | |
| 2013-03-30 | undef Integer#new; ref #1111 | Yukihiro "Matz" Matsumoto | |
| 2013-03-29 | Rename mrb_fix2str() to mrb_fixnum_to_str(). This is for naming consistency. | Masaki Muranaka | |
| 2013-03-29 | Change the second argument of mrb_flo_to_str(). | Masaki Muranaka | |
| Export mrb_flo_to_str() as API. | |||
| 2013-03-29 | Remove mrb_flt2big() as there is no bignum in the core. | Masaki Muranaka | |
| Add new API mrb_flo_to_fixnum(). You can replace mrb_flt2big() to mrb_flo_to_fixnum() with few modifications. | |||
| 2013-03-29 | Sort include files. Some redundant includes are removed. | Masaki Muranaka | |
| 2013-03-29 | Remove limits.h from numeric.h. Add limits.h to some C files. | Masaki Muranaka | |
| 2013-03-27 | use new mrb_format API from mrb_raisef; its only format specifier is "%S" ↵ | Yukihiro Matz Matsumoto | |
| (stringify) and takes mrb_value; close #1062 | |||
| 2013-03-24 | Adjusted indent, space and tab | MATSUMOTO Ryosuke | |
