Return whether a value is considered to be an simple array
(v)
| 213 | |
| 214 | |
| 215 | def is_simple_array(v): |
| 216 | """ |
| 217 | Return whether a value is considered to be an simple array |
| 218 | """ |
| 219 | return isinstance(v, (list, tuple)) |
| 220 | |
| 221 | |
| 222 | def is_array(v): |
no outgoing calls
no test coverage detected