SearchResult

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
Link copied to clipboard
open override val isEmpty: Boolean
Link copied to clipboard
open override val last: MyDramaListAPI.MediaSummary?
Link copied to clipboard
protected var modCount: Int
Link copied to clipboard
open val size: Int

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
suspend fun <A, B> List<A>.amap(f: suspend (A) -> B): List<B>

Short for "Asynchronous Map", runs on all values concurrently, this means that if you are not doing networking, you should use a regular map

Link copied to clipboard
suspend fun <A, B> List<A>.amapIndexed(f: suspend (index: Int, A) -> B): List<B>

Short for "Asynchronous Map" with an Index, runs on all values concurrently, this means that if you are not doing networking, you should use a regular mapIndexed

Link copied to clipboard
fun <A, B> List<A>.apmap(f: suspend (A) -> B): List<B>

Short for "Asynchronous Parallel Map", but is not really parallel, only concurrent.

Link copied to clipboard
fun <A, B> List<A>.apmapIndexed(f: suspend (index: Int, A) -> B): List<B>

Short for "Asynchronous Parallel Map" with an Index, but is not really parallel, only concurrent.

Link copied to clipboard
open fun clear()
Link copied to clipboard
open fun clone(): Any
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open fun ensureCapacity(minCapacity: Int)
Link copied to clipboard
open operator fun get(index: Int): MyDramaListAPI.MediaSummary
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
protected open fun removeRange(fromIndex: Int, toIndex: Int)
Link copied to clipboard
Link copied to clipboard
open operator fun set(index: Int, element: MyDramaListAPI.MediaSummary): MyDramaListAPI.MediaSummary
Link copied to clipboard
open fun subList(fromIndex: Int, toIndex: Int): MutableList<MyDramaListAPI.MediaSummary>
Link copied to clipboard
open fun toArray(): Array<out Any?>?
open fun <T : Any?> toArray(a: Array<out T?>?): Array<out T?>?
Link copied to clipboard
Link copied to clipboard
open fun trimToSize()