
com.hiczp.bilibili.api.CollectionExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
The newest version!
package com.hiczp.bilibili.api
import kotlin.experimental.ExperimentalTypeInference
@UseExperimental(ExperimentalTypeInference::class)
internal inline fun list(@BuilderInference block: MutableList.() -> Unit): List {
val list = ArrayList()
block(list)
return list
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy