select
fun <E1 : Element, E2 : Element, D> Selection<E1, D>.select(selector: ElementSelector<E2>): Selection<E2, D>
inline fun <E1 : Element, E2 : Element, D> Selection<E1, D>.select(crossinline select: E1.(Arguments<D, E1?>) -> E2?): Selection<E2, D>
See analogous d3 function.
inline fun <E1 : Element, E2 : Element> E1.select(crossinline select: E1.(Arguments<Nothing?, E1?>) -> E2?): Selection<E2, Nothing?>
Syntax sugar for calling asSelection followed by select.