src/pxar/binary_search_tree.rs: allow(clippy::many_single_char_names)

This commit is contained in:
Dietmar Maurer 2019-10-25 18:22:19 +02:00
parent 11377a47bb
commit f58f426e86

View File

@ -27,6 +27,7 @@
//! Heap](https://en.wikipedia.org/wiki/Binary_heap) gives a short
//! intro howto store binary trees using an array.
#[allow(clippy::many_single_char_names)]
fn copy_binary_search_tree_inner<F: FnMut(usize, usize)>(
copy_func: &mut F,
// we work on input array input[o..o+n]