Update manga list header
This commit is contained in:
11
app/src/main/java/org/koitharu/kotatsu/utils/ext/OtherExt.kt
Normal file
11
app/src/main/java/org/koitharu/kotatsu/utils/ext/OtherExt.kt
Normal file
@@ -0,0 +1,11 @@
|
||||
package org.koitharu.kotatsu.utils.ext
|
||||
|
||||
import android.icu.lang.UCharacter.GraphemeClusterBreak.T
|
||||
|
||||
@Suppress("UNCHECKED_CAST")
|
||||
fun <T> Class<T>.castOrNull(obj: Any?): T? {
|
||||
if (obj == null || !isInstance(obj)) {
|
||||
return null
|
||||
}
|
||||
return obj as T
|
||||
}
|
||||
Reference in New Issue
Block a user