Skip to content

Instantly share code, notes, and snippets.

@bennibau
Last active August 30, 2018 08:25
Show Gist options
  • Save bennibau/b8931b0812c143274360a8a923cf54e1 to your computer and use it in GitHub Desktop.
Save bennibau/b8931b0812c143274360a8a923cf54e1 to your computer and use it in GitHub Desktop.
let mappedUsers = allUsers.map { users -> [UserDto] in
var userContainer = [UserDto]()
users.forEach({ user in
userContainer.append(UserDto(id: user.id, name: user.email))
})
return userContainer
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment