Method: String#is_array?
- Defined in:
- lib/openc3/core_ext/string.rb
#is_array? ⇒ Boolean
Returns Whether the String represents an Array.
208 209 210 |
# File 'lib/openc3/core_ext/string.rb', line 208 def is_array? if ARRAY_CHECK_REGEX.match?(self) then true else false end end |