Files
2021-08-13 11:14:02 +03:00

11 lines
220 B
Kotlin
Vendored

class JList<E>
class ListSpeedSearch<T>(list: JList<T>)
class XThreadsFramesView {
private fun <J> J.withSpeedSearch(): J where J : JList<*> {
val search = ListSpeedSearch(this)
return this
}
}