index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
src
/
string.c
Age
Commit message (
Expand
)
Author
2019-07-17
Avoid `MRB_INLINE` for `mrb_str_modify()`; ref #4579
Yukihiro "Matz" Matsumoto
2019-07-16
Copy receiver's `MRB_STR_ASCII` flag in some methods of `String`
KOBAYASHI Shuji
2019-07-16
Merge pull request #4579 from shuujii/keep-MRB_STR_ASCII-flag-in-some-methods...
Yukihiro "Matz" Matsumoto
2019-07-15
Add `MRB_API` to `mrb_str_modify_keep_ascii()`
KOBAYASHI Shuji
2019-07-14
Keep `MRB_STR_ASCII` flag in some methods of `String`
KOBAYASHI Shuji
2019-07-14
Improve `utf8len()` performance with UTF-8
dearblue
2019-07-13
Change type of a variable for signedness mismatch; ref #4573
Yukihiro "Matz" Matsumoto
2019-07-12
Fix heap buffer overflow; fix #4569
dearblue
2019-07-11
Improve performance `String#index` with UTF-8
dearblue
2019-07-10
Remove an unused argument of `str_with_class()`
KOBAYASHI Shuji
2019-07-05
Read/write `MRB_STR_ASCII` flag only when `MRB_UTF8_STRING` is defined
KOBAYASHI Shuji
2019-07-04
Rename `MRB_STR_NO_UTF` to 'MRB_STR_ASCII`; close #4550
Yukihiro "Matz" Matsumoto
2019-07-04
Fix heap buffer overflow; ref #4549
dearblue
2019-06-29
Simplify `mrb_str_aref_m()` and `mrb_str_aref()`
dearblue
2019-06-29
Replace `String#[]=` method by C implements
dearblue
2019-06-26
Silence unused label warnings from gcc; ref #4524
KOBAYASHI Shuji
2019-06-26
Merge pull request #4524 from dearblue/reverse-utf8
Yukihiro "Matz" Matsumoto
2019-06-26
Merge pull request #4532 from shuujii/fix-String-byteslice-with-MRB_UTF8_STRI...
Yukihiro "Matz" Matsumoto
2019-06-25
Fix `String#byteslice` with `MRB_UTF8_STRING` and some edge cases
KOBAYASHI Shuji
2019-06-25
Fix `mrb_str_to_str()` to handle symbols.
Yukihiro "Matz" Matsumoto
2019-06-22
Fix the unnecessary `mrb_str_modify()` call
dearblue
2019-06-22
Delete the unnecessary block brace in `mrb_str_reverse_bang`
dearblue
2019-06-22
Fix string brakes for one UTF-8 charactor
dearblue
2019-06-22
Change to UTF-8 string reversing with in place
dearblue
2019-06-22
Replacement to function for string reversing
dearblue
2019-06-22
Fix potential overflow in `utf8len()`
dearblue
2019-05-25
Fix double rounded by negative index
dearblue
2019-05-25
Name the return value of `mrb_range_beg_len()`
dearblue
2019-05-08
Use `mrb_string_value_cstr` in `mrb_str_to_dbl`
KOBAYASHI Shuji
2019-05-07
Refactor `mrb_str_to_cstr` and `mrb_string_value_cstr`
KOBAYASHI Shuji
2019-05-02
Merge pull request #4417 from shuujii/unify-overflow-error-class-for-conversi...
Yukihiro "Matz" Matsumoto
2019-05-02
Unify overflow error class for conversion to integer to `RangeError`
KOBAYASHI Shuji
2019-05-01
Remove unneeded `argc` check in `mrb_str_aref_m()`
KOBAYASHI Shuji
2019-04-24
Remove unnecessary `mrb_regexp_check()` and related functions.
Yukihiro "Matz" Matsumoto
2019-04-09
Extract frozen checking to function
KOBAYASHI Shuji
2019-03-26
Fix missing `MRB_API` prefix for functions below; clse #4267
Yukihiro "Matz" Matsumoto
2019-03-25
Use uppercase version of `ctype` macros e.g. `ISSPACE`; fix #4338
Yukihiro "Matz" Matsumoto
2019-02-06
Reduce invocation of `mrb_convert_type()` from `mrb_str_to_str()`.
Yukihiro "Matz" Matsumoto
2019-02-05
Fix markup and remove unneeded comment for doc in `src/string.c` [ci skip]
KOBAYASHI Shuji
2019-02-04
Fix `Symbol#size` for multi-byte characters with `MRB_UTF8_STRING`
KOBAYASHI Shuji
2019-01-29
Remove unused macro in `src/string.c`
KOBAYASHI Shuji
2018-12-17
Recover `String#to_str`; ref #4177
Yukihiro "Matz" Matsumoto
2018-11-19
Call `mrb_str_to_str` from `mrb_string_value_ptr` for compatibility.
Yukihiro "Matz" Matsumoto
2018-11-19
Use type checking `mrb_to_str` instead of converting `mrb_str_to_str`.
Yukihiro "Matz" Matsumoto
2018-11-19
Remove implicit conversion using `to_str` method; fix #3854
Yukihiro "Matz" Matsumoto
2018-06-28
Use `mrb_raise()` instead of `mrb_raisef()`; ref #4062
Yukihiro "Matz" Matsumoto
2018-06-27
Add negative check in `mrb_str_resize`; fix #4062
Yukihiro "Matz" Matsumoto
2018-05-02
Need to call `mrb_str_modify()` in `mrb_str_cat_str()`; fix #4018
Yukihiro "Matz" Matsumoto
2018-04-28
Fix broken support of `MRB_WITHOUT_FLOAT`; fix #4015
Yukihiro "Matz" Matsumoto
2018-04-17
Fallback to float when caompiled binary with 64bit compiler.
Takeshi Watanabe
[next]