We're trying to figure out a good naming scheme for operators that target a collection of something.
For example, like our existing mapMany
operator. One of the newer ones is bind(to: [..])
, vs. bindMany(...)
.
The big question is, should we keep on doing *many
, or should we use overloads. The cost of overloads mainly comes down to performance, indexing, collision-issues, etc.
Please cast your vote!

