You've already forked Magisk
mirror of
https://github.com/topjohnwu/Magisk.git
synced 2025-09-06 06:36:58 +00:00
10 lines
305 B
Kotlin
10 lines
305 B
Kotlin
package com.topjohnwu.magisk.databinding
|
|
|
|
import kotlinx.coroutines.CoroutineScope
|
|
|
|
fun <T : AnyDiffRvItem> diffListOf() =
|
|
DiffObservableList(DiffRvItem.callback<T>())
|
|
|
|
fun <T : AnyDiffRvItem> filterableListOf(scope: CoroutineScope) =
|
|
FilterableDiffObservableList(DiffRvItem.callback<T>(), scope)
|