(predicate, context)
| 294 | }, |
| 295 | |
| 296 | count(predicate, context) { |
| 297 | return ensureSize( |
| 298 | predicate ? this.toSeq().filter(predicate, context) : this |
| 299 | ); |
| 300 | }, |
| 301 | |
| 302 | countBy(grouper, context) { |
| 303 | return countByFactory(this, grouper, context); |
nothing calls this directly
no test coverage detected