Return whether a value is considered to be an array
(v)
| 220 | |
| 221 | |
| 222 | def is_array(v): |
| 223 | """ |
| 224 | Return whether a value is considered to be an array |
| 225 | """ |
| 226 | return is_simple_array(v) or is_homogeneous_array(v) |
| 227 | |
| 228 | |
| 229 | def type_str(v): |
no test coverage detected