Generic collections in Swift

//List of integer
var intList = Array<Int>()
intList.append(5)

//Dictionary
var dic = Dictionary<IntString>()
dic[1] = "one"

//Set
var set = Set<Double>();
set.insert(3.14);