EntityCollection.map(predicate)
should produce a list
#35
Labels
Milestone
EntityCollection.map(predicate)
should produce a list
#35
Problem Statement
EntityCollection.map(predicate)
produces a generator and not a list anymore.Expected Behavior
EntityCollection.map(predicate)
should produce a list and not a generator object, as this was the intended behavior and correlates to the current behavior of thegroup_and_map
method.Context
Provide any relevant background information or context that may help in understanding the issue.
Reproducible Steps
collection.map(lambda _: True)
.The text was updated successfully, but these errors were encountered: