arrow.match_substring_options
Module for [MatchSubstringOptions] class
Types 3
Methods
MatchSubstringOptionsGidBuilder builder() static nothrowGet builder for [arrow.match_substring_options.MatchSubstringOptions] Returns: New builder objectbool ignoreCase() @property nothrowGet `ignoreCase` property. Returns: Whether to perform a case-insensitive match.void ignoreCase(bool propval) @property nothrowSet `ignoreCase` property. Params: propval = Whether to perform a case-insensitive match.string pattern() @property nothrowGet `pattern` property. Returns: The exact substring (or regex, depending on kernel) to look for inside input values.void pattern(string propval) @property nothrowSet `pattern` property. Params: propval = The exact substring (or regex, depending on kernel) to look for inside input values.classMatchSubstringOptionsGidBuilderImpl(T) : arrow.function_options.FunctionOptionsGidBuilderImpl!T
Fluent builder implementation template for arrow.match_substring_options.MatchSubstringOptions
Methods
T ignoreCase(bool propval) nothrowSet `ignoreCase` property. Params: propval = Whether to perform a case-insensitive match. Returns: Builder instance for fluent chainingT pattern(string propval) nothrowSet `pattern` property. Params: propval = The exact substring (or regex, depending on kernel) to look for inside input values. Returns: Builder instance for fluent chaining