singleOrNoResult

fun <R> RowSet<R>.singleOrNoResult(): R?(source)

Deprecated

Just use `singleOrNullIfEmpty` from "kotlin-common".

Replace with

import com.huanshankeji.collections.singleOrNullIfEmpty
this.singleOrNullIfEmpty()

"single or no" means differently here from Iterable.singleOrNull.