Guest User

Untitled

a guest
Mar 17th, 2018
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. fun others(students: List<Student>) {
  2. val mappedById = students.associateBy { it.id }
  3. val groupedByAge = students.groupBy { it.age }
  4. }
  5.  
  6. data class Student(val id: Int, val name: String, val age: Int)
Add Comment
Please, Sign In to add comment