```class LinkedList<T> : kotlin.collections....
# announcements
s
Copy code
class LinkedList<T> : kotlin.collections.Iterable<T> {

    object i : kotlin.collections.Iterator<T> {
        override fun hasNext(): Boolean {
            TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
        }

        override fun next(): T {
            TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
        }

    }
    
    override fun iterator(): kotlin.collections.Iterator<T> {
        return i
    }
/home/macropreprocessor/IdeaProjects/kpp/src/linuxMain/kotlin/preprocessor/utils/core/algorithms/LinkedList.kt: (5, 44): Unresolved reference: T
for
object i : kotlin.collections.Iterator<T> {
🧵 2