1. 31 May, 2021 1 commit
  2. 30 May, 2021 3 commits
  3. 29 May, 2021 2 commits
  4. 28 May, 2021 2 commits
  5. 27 May, 2021 7 commits
  6. 26 May, 2021 4 commits
  7. 25 May, 2021 3 commits
  8. 24 May, 2021 4 commits
  9. 22 May, 2021 5 commits
  10. 20 May, 2021 6 commits
  11. 18 May, 2021 2 commits
  12. 17 May, 2021 1 commit
    • Yukihiro "Matz" Matsumoto's avatar
      Global renaming regarding `integer` and `float`. · 5eebbd7d
      Yukihiro "Matz" Matsumoto authored
      Consistent number conversion function names:
      * `mrb_value` to immediate (C) value
        * `mrb_int()` -> `mrb_as_int()`
        * `mrb_to_flo()` -> `mrb_as_float()`
      * `mrb_value` to `mrb_value` (converted)
        * `mrb_to_int()'
        * `mrb_Integer()` - removed
        * `mrb_Float()` -> `mrb_to_float`
      
      Consistent function name (avoid `_flo` suffix):
      * `mrb_div_flo()` -> `mrb_div_float`
      5eebbd7d