Immutable/Mutable Collections in Swift
问题 I was referring to Apple\'s Swift programming guide for understanding creation of Mutable/ immutable objects(Array, Dictionary, Sets, Data) in Swift language. But I could\'t understand how to create a immutable collections in Swift. I would like to see the equivalents in Swift for the following in Objective-C Immutable Array NSArray *imArray = [[NSArray alloc]initWithObjects:@\"First\",@\"Second\",@\"Third\",nil]; Mutable Array NSMutableArray *mArray = [[NSMutableArray alloc]initWithObjects:@