[LC] rename lightClasses/lightClasses to lightClasses/lightClassByFqName

This commit is contained in:
Dmitrii Gridin
2022-12-22 13:36:16 +01:00
committed by teamcity
parent 81a939409a
commit 742c3de112
235 changed files with 6 additions and 6 deletions
@@ -0,0 +1,29 @@
// SmartSet
class SmartSet<T> private constructor() : AbstractSet<T>(), MutableSet<T> {
companion object {
private val ARRAY_THRESHOLD = 5
@JvmStatic
fun <T> create() = SmartSet<T>()
@JvmStatic
fun <T> create(set: Collection<T>): SmartSet<T> = TODO()
}
private var data: Any? = null
override var size: Int = 0
override fun iterator(): MutableIterator<T> = TODO()
override fun add(element: T): Boolean = TODO()
override fun clear() {
data = null
size = 0
}
}
// COMPILATION_ERRORS