Logo

Programming-Idioms

History of Idiom 117 > diff from v53 to v54

Edit summary for version 54 by OC:
New Obj-C implementation by user [OC]

Version 53

2020-08-10, 17:35:02

Version 54

2020-10-10, 21:20:45

Idiom #117 Get list size

Set n to the number of elements of list x.

Idiom #117 Get list size

Set n to the number of elements of list x.

Variables
n,x
Variables
n,x
Extra Keywords
length
Extra Keywords
length
Imports
@import Foundation;
Code
NSUInteger n=x.count;