pakoito
var accumulator: Any? = NullSurrogate internal fun <T> unbox(value: Any?): T = if (value === NullSurrogate) null as T else value as T