8 lines
366 B
Kotlin
8 lines
366 B
Kotlin
package com.simplemobiletools.smsmessenger.extensions
|
|
|
|
import android.text.TextUtils
|
|
import com.simplemobiletools.commons.models.SimpleContact
|
|
|
|
fun ArrayList<SimpleContact>.getThreadTitle(): String = TextUtils.join(", ", map { it.name }.toTypedArray()).orEmpty()
|
|
|
|
fun ArrayList<SimpleContact>.getAddresses() = flatMap { it.phoneNumbers }.map { it.normalizedNumber }
|