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
2013-12-25
avoid copying when the original string comes with MRB_STR_NOFREE
Yukihiro "Matz" Matsumoto
2013-12-25
clear STR_NOFREE flag on modify
Yukihiro "Matz" Matsumoto
2013-12-01
add mrb_intern_lit for creating symbol from string literal
take_cheeze
2013-11-29
rename mrb_intern2() to mrb_intern(); huge API incompatibility; close #1513
Yukihiro "Matz" Matsumoto
2013-11-20
rename API mrb_str_dup_static() -> mrb_str_pool()
Yukihiro "Matz" Matsumoto
2013-11-19
irep->pool struct pool -> mrb_value
Miura Hideki
2013-11-07
irep->pool not to be GCed
Yukihiro "Matz" Matsumoto
2013-09-21
index to mrb_digitmap[] should always be positive
Yukihiro "Matz" Matsumoto
2013-08-26
Merge branch 'mruby' into pr-typeerror-string-start-end-with
Tomoyuki Sahara
2013-08-24
Fix a problem of 'z' option and shared string
h2so5
2013-08-23
add mrb_string_type().
Tomoyuki Sahara
2013-08-11
I fix ISO No in String class in comparison with ISO_IEC_30170_2012(E)-Charact...
Jun Hiroe
2013-07-23
String `=~` and `match` to work with pluggable Regexp; close #1398
Yukihiro "Matz" Matsumoto
2013-07-15
Repalace int with mrb_bool because a return value is boolean.
Jun Hiroe
2013-07-11
Replace 0 with '\0' as nul terminated string.
Jun Hiroe
2013-06-21
Cleanup mrb_str_resize().
Masaki Muranaka
2013-06-21
make mrb_str_new_cstr DRY
cubicdaiya
2013-05-26
Add MRB_WORD_BOXING mode (represent mrb_value as a word)
kimu_shu
2013-04-29
always use unsigned int as mrb_bool even in C++
Yukihiro "Matz" Matsumoto
2013-04-29
fix mrb_string_shared memory leaks
Yukihiro "Matz" Matsumoto
2013-04-29
move mrb_shared_string definition to src/string.c
Yukihiro "Matz" Matsumoto
2013-04-28
mrb_str_new_static(): zero copy string creation
Yukihiro "Matz" Matsumoto
2013-04-25
remove unnecessary local variable
Yukihiro "Matz" Matsumoto
2013-04-25
Remove sprintf().
Masaki Muranaka
2013-04-25
remove calling sprintf(); ref #1210
Yukihiro "Matz" Matsumoto
2013-04-25
a string may have a lot of non-printable chars.
Tomoyuki Sahara
2013-04-25
rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206
Yukihiro "Matz" Matsumoto
2013-04-21
Use memcmp instead of strcmp if it is possible.
Masaki Muranaka
2013-04-21
Remove a comment.
Masaki Muranaka
2013-04-21
Clean up variable types and type casts.
Masaki Muranaka
2013-04-20
put spaces after if/while
Yukihiro "Matz" Matsumoto
2013-04-19
Make str_modify public
h2so5
2013-04-10
Refactor mrb_str_dump
h2so5
2013-04-05
factor out redundant Regexp check into functions
Yukihiro "Matz" Matsumoto
2013-03-29
Rename mrb_fix2str() to mrb_fixnum_to_str(). This is for naming consistency.
Masaki Muranaka
2013-03-29
Remove API mrb_string_value(). There have mrb_str_to_str() in the core. And m...
Masaki Muranaka
2013-03-29
Rearrange SIZE_MAX. It is supported also VC++ since its version10. And there ...
Masaki Muranaka
2013-03-29
Sort include files. Some redundant includes are removed.
Masaki Muranaka
2013-03-27
use new mrb_format API from mrb_raisef; its only format specifier is "%S" (st...
Yukihiro Matz Matsumoto
2013-03-26
Preprocessor # should be the top of line.
Masaki Muranaka
2013-03-26
Remove unused macros.
Masaki Muranaka
2013-03-24
Adjusted indent, space and tab
MATSUMOTO Ryosuke
2013-03-23
rename mrb_ptr_as_string() to mrb_ptr_to_str()
Yukihiro Matz Matsumoto
2013-03-23
Merge branch 'pr-add-mrb_ptr_as_string' of https://github.com/monaka/mruby in...
Yukihiro Matz Matsumoto
2013-03-23
Remove _obj_classname() as unused.
Masaki Muranaka
2013-03-23
Use mrb_obj_classname() instead of _obj_classname(). They are complietely same.
Masaki Muranaka
2013-03-23
Add new API mrb_ptr_as_string().
Masaki Muranaka
2013-03-23
Rename API mrb_str_cat2() to mrb_str_cat_cstr(). This is for naming orthogona...
Masaki Muranaka
2013-03-22
Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by s...
Masaki Muranaka
2013-03-19
rename mrb_true_or_false_value() to mrb_bool_value()
Yukihiro Matz Matsumoto
[next]