Sha256: defeaaeafceae4d4c3b496e16405540b44d7b2552caf49b9da8754409b425b3b
Contents?: true
Size: 521 Bytes
Versions: 8
Compression:
Stored size: 521 Bytes
Contents
#import "Somefile.h" @implementation ABC - (id)a:(B)b { return 1; } @end @implementation ABC - (void)xyz; @end NSDictionary *dictionary = [NSDictionary dictionaryWithObjectsAndKeys: @"quattuor", @"four", @"quinque", @"five", @"sex", @"six", nil]; NSString *key; for (key in dictionary) { NSLog(@"English: %@, Latin: %@", key, [dictionary valueForKey:key]); } // Literals NSArray *a = @[ @"1", @"2" ]; NSDictionary *d = @{ @"key": @"value" }; NSNumber *n1 = @( 1 ); NSNumber *n2 = @( [a length] );
Version data entries
8 entries across 8 versions & 4 rubygems