mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-05-17 08:02:38 +02:00
Currently, `BinaryTree::has` takes its argument by value. This is a pretty unrealistic API for a Rust library. Let's fix this and take the argument by reference instead.