(items, shape)
| 317 | return _ca(items, shape) |
| 318 | |
| 319 | def farray(items, shape): |
| 320 | if listp(items) and not 0 in shape and prod(shape) != len(items): |
| 321 | raise ValueError("prod(shape) != len(items)") |
| 322 | return _fa(items, shape) |
| 323 | |
| 324 | def indices(shape): |
| 325 | """Generate all possible tuples of indices.""" |
no test coverage detected