All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jsTest.com.squareup.sqldelight.logs.LinkedList.kt Maven / Gradle / Ivy

The newest version!
package com.squareup.sqldelight.logs

actual class LinkedList actual constructor(objectPoolSize: Int) {
  private val list = mutableListOf()
  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