this repo has no description
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix bugs in reverse iterator (fuzzer Ws)

garrison be75c0d2 5a4379d0

+3 -3
+3 -3
lib/btree/iterator.ex
··· 206 206 _::binary-size(byte_size(current_page) - c_page_trailer_bytes()), 207 207 child_pair_count::integer-16, 208 208 _type_byte::integer-8, 209 - >> = current_page 209 + >> = child_page 210 210 211 211 it = %{it | 212 212 page_stack: [{current_page, current_i} | it.page_stack], ··· 214 214 current_i: child_pair_count, 215 215 current_pair: nil, 216 216 } 217 - next_forward(it) 217 + next_backward(it) 218 218 219 219 0x01 -> 220 220 current_pair = leaf_pair_at(current_page, pair_count, current_i) ··· 238 238 current_page: page, 239 239 current_i: i, 240 240 } 241 - next_forward(it) 241 + next_backward(it) 242 242 end 243 243 end 244 244 end