(items, shape)
| 329 | return _ca(items, shape) |
| 330 | |
| 331 | def farray(items, shape): |
| 332 | if listp(items) and not 0 in shape and prod(shape) != len(items): |
| 333 | raise ValueError("prod(shape) != len(items)") |
| 334 | return _fa(items, shape) |
| 335 | |
| 336 | def indices(shape): |
| 337 | """Generate all possible tuples of indices.""" |
no test coverage detected
searching dependent graphs…