// // Created by zen on 19/06/14. // Copyright (c) 2014 Yalantis. All rights reserved. // #import @protocol FEMExcludableCollection @required - (id)collectionByExcludingObjects:(id)objects; @end @interface NSArray (FEMExcludableCollection) - (NSArray *)collectionByExcludingObjects:(NSArray *)objects; @end @interface NSSet (FEMExcludableCollection) - (NSSet *)collectionByExcludingObjects:(NSSet *)objects; @end @interface NSOrderedSet (FEMExcludableCollection) - (NSOrderedSet *)collectionByExcludingObjects:(NSOrderedSet *)objects; @end