Swift Performance: Stop Creating Intermediate Arrays with .lazy
so what happens when we write this code
struct User {
let name: String
let isActive: Bool
let avatarURL: URL
}
func search(query: String, in users: [User]) -> [UserRow] {
Array(
hudaios.hashnode.dev2 min read