HEhuda elhadyinhudaios.hashnode.dev·Mar 23 · 2 min readSwift Performance: Stop Creating Intermediate Arrays with .lazyso 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( 00