| 11446 | } |
| 11447 | |
| 11448 | GArrowMatchSubstringOptions * |
| 11449 | garrow_match_substring_options_new_raw( |
| 11450 | const arrow::compute::MatchSubstringOptions *arrow_options) |
| 11451 | { |
| 11452 | return GARROW_MATCH_SUBSTRING_OPTIONS(g_object_new(GARROW_TYPE_MATCH_SUBSTRING_OPTIONS, |
| 11453 | "pattern", |
| 11454 | arrow_options->pattern.c_str(), |
| 11455 | "ignore-case", |
| 11456 | arrow_options->ignore_case, |
| 11457 | NULL)); |
| 11458 | } |
| 11459 | |
| 11460 | arrow::compute::MatchSubstringOptions * |
| 11461 | garrow_match_substring_options_get_raw(GArrowMatchSubstringOptions *options) |
no outgoing calls
no test coverage detected