I've got it ```fun UserMapper.toUser(): User = Use...
# exposed
z
I've got it
Copy code
fun UserMapper.toUser(): User = User.new {
    gender = this@toUser.g.toGender()
    birthday = this@toUser.birthday
    interests = SizedCollection(this@toUser.i.map { it.toInterest() })
}
👌 1