a04913a197
#KT-48161 Fixed
11 lines
220 B
Kotlin
Vendored
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
|
|
}
|
|
}
|