Open idanarye opened 5 years ago
In [1]: from easypy.collections import ListCollection In [2]: ListCollection([1]) + ListCollection([2]) Out[2]: [1, 2] In [3]: type(_) Out[3]: list
Ideally we'd want it to return a ListCollection.
ListCollection
Seems legit. What about other collection types combinations? FilterColl + FilterColl? SimpleObjectColl + *?
FilterColl + FilterColl
SimpleObjectColl + *
Ideally we'd want it to return a
ListCollection
.