nativeTest.com.squareup.sqldelight.logs.LinkedList.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of runtime Show documentation
Show all versions of runtime Show documentation
Multiplatform runtime library to support generated code
The newest version!
package com.squareup.sqldelight.logs
import co.touchlab.stately.collections.SharedLinkedList
actual class LinkedList actual constructor(objectPoolSize: Int) {
private val list = SharedLinkedList(objectPoolSize)
actual fun add(element: T): Boolean = list.add(element)
actual fun clear() { list.clear() }
actual operator fun get(index: Int): T = list[index]
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy