Crates.io | instrumented-stepanov |
lib.rs | instrumented-stepanov |
version | 1.1.2 |
source | src |
created_at | 2019-02-11 17:36:03.914416 |
updated_at | 2019-08-27 12:45:30.885368 |
description | InstrumentedBase is collecting data about number of new, clone, drop, eq, partial cmp and cmp from Instrumented instates. |
homepage | |
repository | https://github.com/letac/instrumented-stepanov |
max_upload_size | |
id | 114130 |
size | 7,376 |
InstrumentedBase is collecting data about number of new, clone, drop, eq, partial cmp and cmp from Instrumented instates.
let n = count_operations(vec![2, 1, 3, 4], |x| x.sort());
println!("{:?}", n);
Attempt to do Efficient Programming with Components: Lecture 3 Part 1 and Efficient Programming with Components: Lecture 3 Part 2 from C++ to Rust.