You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This one is a little more tricky since NSCountedSet inherits from NSMutableSet.
Since we would want ASTMap(countedSet, block); to be equivalent to ASTMap((NSSet *)countedSet, block);, "unrolling" versions of map et. al. would need an extra parameter.
E.g.:
// if unroll is YES, calls the block multiple times per element.NSCountedSet *ASTMap(NSCountedSet *set, BOOL unroll, id(^block)(id obj));
The text was updated successfully, but these errors were encountered:
This one is a little more tricky since
NSCountedSet
inherits fromNSMutableSet
.Since we would want
ASTMap(countedSet, block);
to be equivalent toASTMap((NSSet *)countedSet, block);
, "unrolling" versions ofmap
et. al. would need an extra parameter.E.g.:
The text was updated successfully, but these errors were encountered: