SearchResult

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard
protected var modCount: Int
Link copied to clipboard
open override val size: Int

Functions

Link copied to clipboard
open override fun add(element: MyDramaListAPI.MediaSummary): Boolean
open override fun add(index: Int, element: MyDramaListAPI.MediaSummary)
Link copied to clipboard
open override fun addAll(elements: Collection<MyDramaListAPI.MediaSummary>): Boolean
open override fun addAll(index: Int, elements: Collection<MyDramaListAPI.MediaSummary>): Boolean
Link copied to clipboard
open override fun addFirst(p0: MyDramaListAPI.MediaSummary)
Link copied to clipboard
open override fun addLast(p0: MyDramaListAPI.MediaSummary)
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 override fun clear()
Link copied to clipboard
open override fun clone(): Any
Link copied to clipboard
open operator override fun contains(element: MyDramaListAPI.MediaSummary): Boolean
Link copied to clipboard
Link copied to clipboard
open fun ensureCapacity(p0: Int)
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
Link copied to clipboard
open override fun forEach(p0: Consumer<in MyDramaListAPI.MediaSummary>)
Link copied to clipboard
open operator override fun get(index: Int): MyDramaListAPI.MediaSummary
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open override fun hashCode(): Int
Link copied to clipboard
open override fun indexOf(element: MyDramaListAPI.MediaSummary): Int
Link copied to clipboard
open override fun isEmpty(): Boolean
Link copied to clipboard
Link copied to clipboard
open override fun lastIndexOf(element: MyDramaListAPI.MediaSummary): Int
Link copied to clipboard
Link copied to clipboard
open override fun remove(element: MyDramaListAPI.MediaSummary): Boolean
Link copied to clipboard
Link copied to clipboard
open override fun removeAt(p0: Int): MyDramaListAPI.MediaSummary
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
protected open override fun removeRange(p0: Int, p1: Int)
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
open operator override fun set(index: Int, element: MyDramaListAPI.MediaSummary): MyDramaListAPI.MediaSummary
Link copied to clipboard
open override fun sort(p0: Comparator<in MyDramaListAPI.MediaSummary>)
Link copied to clipboard
Link copied to clipboard
open override fun subList(fromIndex: Int, toIndex: Int): MutableList<MyDramaListAPI.MediaSummary>
Link copied to clipboard
open override fun toArray(): Array<Any>
open override fun <T : Any> toArray(p0: Array<T>): Array<T>
Link copied to clipboard
open override fun toString(): String
Link copied to clipboard
open fun trimToSize()