sweekt
sweekt copied to clipboard
Use the compiler to check if some APIs need to be optimized
Example:
val list = listOf(...)
// List<*> instance never be Array<*>
list.cast<Array<*>>()
list.castOrNull<Array<*>>()