alllex
fun <T> exampleMapNotNull(cs: List<Data<T>>): List<T> { return cs.mapNotNull { it: Data<T> -> it.value } }