I was thinking of something like this ``` priv...
# announcements
o
I was thinking of something like this
Copy code
private fun <T> makeRows(size: Int, objectsType: T): Array<T> {
        val rows = Array<T>(size)
    }