···109109 * If the reverse index has not yet been loaded, or the position is out of
110110 * bounds, this function aborts.
111111 *
112112- * This function runs in time O(log N) with the number of objects in the MIDX.
112112+ * This function runs in constant time.
113113 */
114114uint32_t pack_pos_to_midx(struct multi_pack_index *m, uint32_t pos);
115115···120120 * If the reverse index has not yet been loaded, or the position is out of
121121 * bounds, this function aborts.
122122 *
123123- * This function runs in constant time.
123123+ * This function runs in time O(log N) with the number of objects in the MIDX.
124124 */
125125int midx_to_pack_pos(struct multi_pack_index *midx, uint32_t at, uint32_t *pos);
126126