Module: Xqsr3::StringUtilities::StartsWith
- Included in:
- String
- Defined in:
- lib/xqsr3/string_utilities/starts_with.rb
Defined Under Namespace
Modules: StartsWith_Helper_
Class Method Summary
collapse
Instance Method Summary
collapse
Class Method Details
.string_starts_with?(s, *args) ⇒ Boolean
112
113
114
115
|
# File 'lib/xqsr3/string_utilities/starts_with.rb', line 112
def self.string_starts_with? s, *args
StartsWith_Helper_.string_starts_with_array_ s, args
end
|
Instance Method Details
#starts_with?(*args) ⇒ Boolean
117
118
119
120
|
# File 'lib/xqsr3/string_utilities/starts_with.rb', line 117
def starts_with? *args
StartsWith_Helper_.string_starts_with_array_ self, args
end
|