select(v,f)
i1 : select({1,2,3,4,5}, odd) o1 = {1, 3, 5} o1 : List
i2 : select([1,2,3,4,5], odd) o2 = [1, 3, 5] o2 : Array