| Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
According to CONTRIBUTING.md,
Don't use C++ style comments
/* This is the prefered comment style */
Use C++ style comments only for temporary comment e.g. commenting out some code lines.
|
|
mrb_str_new_static is more efficient than mrb_str_new in this case.
|
|
Using mrb_str_new instead of mrb_str_new_cstr
|
|
|
|
|
|
DATA_GET_PTR() to type safe retrieval (TypeError will be raised), DATA_CHECK_GET_PTR() to get nil if type mismatched
|
|
|
|
|
|
|
|
|
|
at once
|
|
|
|
mrb_data_check_and_get
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|