Sha256: 2cca0390e7b28b1286ea0d63fb10aee2a6d718329ab31ba66ad12a16bd4ce3c6
Contents?: true
Size: 433 Bytes
Versions: 4
Compression:
Stored size: 433 Bytes
Contents
// // NSSet+Accessors.h // SampleProject // // Created by Marin Usalj on 11/23/12. // Copyright (c) 2012 @mneorr | mneorr.com. All rights reserved. // #import <Foundation/Foundation.h> @interface NSSet (Accessors) @property(readonly) id first; @property(readonly) id last; - (void)each:(void (^)(id object))block; - (void)eachWithIndex:(void (^)(id object, int index))block; - (NSArray *)map:(id (^)(id object))block; @end
Version data entries
4 entries across 4 versions & 1 rubygems