Create a new collection from an expr
(expr)
| 4 | |
| 5 | |
| 6 | def new_collection(expr): |
| 7 | """Create a new collection from an expr""" |
| 8 | meta = expr._meta |
| 9 | expr._name # Ensure backend is imported |
| 10 | return get_collection_type(meta)(expr) |
no outgoing calls
searching dependent graphs…