@NotNull
 private static String createArrayFunction(@NotNull final Type type) {
   String sType = innerTypeStr(type);
   if (PRIMITIVE_TYPES.contains(sType)) {
     return sType + "Array"; // intArray
   }
   return AstUtil.lowerFirstCharacter(type.convertedToNotNull().toKotlin()); // array<Foo?>
 }