sweekt icon indicating copy to clipboard operation
sweekt copied to clipboard

Use the compiler to check if some APIs need to be optimized

Open chachako opened this issue 4 years ago • 0 comments

Example:

val list = listOf(...)

// List<*> instance never be Array<*>
list.cast<Array<*>>()
list.castOrNull<Array<*>>()

chachako avatar Jan 18 '22 14:01 chachako