| 127 | } |
| 128 | |
| 129 | void init(PSI_memory_key psi_key, size_t prealloc=16, size_t increment=16) |
| 130 | { |
| 131 | init_dynamic_array2(psi_key, &array, sizeof(Elem), 0, prealloc, increment, MYF(0)); |
| 132 | } |
| 133 | |
| 134 | /** |
| 135 | @note Though formally this could be declared "const" it would be |
nothing calls this directly
no test coverage detected