> FWIW `Where` is used as method also in c# > > Example: > IEnumerable<int> numQuery2 = numbers.Where(num => num % 2 == 0).OrderBy(n => > n);
C# Where is part of LINQ; even when called as a method instead of as special syntax, it still has lazy, declarative behavior. -- Brent Royal-Gordon Architechies _______________________________________________ swift-evolution mailing list [email protected] https://lists.swift.org/mailman/listinfo/swift-evolution
