I have this working ``` inline fun <reified...
# announcements
e
I have this working
Copy code
inline fun <reified E: Enum<E>, reified T>arrayBig(noinline init: (Int) -> T): Array<T> = Array(enumValues<E>().size, init)
    enum class Buffer { Index, Vertex }
    enum class Circle { A, B }
    val bufferName = arrayBig<Buffer, IntBuffer>() { intBufferBig<Circle>() }