Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: jqnatividad/qsv-stats Loading
base: 0.12.0
Choose a base ref
...
head repository: jqnatividad/qsv-stats Loading
compare: 0.14.0
Choose a head ref
  • 12 commits
  • 6 files changed
  • 1 contributor

Commits on Mar 12, 2024

  1. add mode_hashmap() fn - an alternate method of getting the mode using…

    … an AHashMap
    
    as per the implementation comment on mode_on_sorted
    jqnatividad committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    f51ccbb View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    ea90eca View commit details
    Browse the repository at this point in the history
  3. clippy - unused, redundant imports

    warning: the item `Default` is imported redundantly
       --> src/frequency.rs:3:5
        |
    3   | use std::default::Default;
        |     ^^^^^^^^^^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:125:13
        |
    125 |     pub use super::v1::*;
        |             --------- the item `Default` is already defined here
        |
        = note: `#[warn(unused_imports)]` on by default
    
    warning: the item `FromIterator` is imported redundantly
       --> src/frequency.rs:6:17
        |
    6   | use std::iter::{FromIterator, IntoIterator};
        |                 ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `FromIterator` is already defined here
    
    warning: the item `IntoIterator` is imported redundantly
       --> src/frequency.rs:6:31
        |
    6   | use std::iter::{FromIterator, IntoIterator};
        |                               ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `IntoIterator` is already defined here
    
    warning: the item `Default` is imported redundantly
       --> src/minmax.rs:1:5
        |
    1   | use std::default::Default;
        |     ^^^^^^^^^^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:125:13
        |
    125 |     pub use super::v1::*;
        |             --------- the item `Default` is already defined here
    
    warning: the item `FromIterator` is imported redundantly
       --> src/minmax.rs:3:17
        |
    3   | use std::iter::{FromIterator, IntoIterator};
        |                 ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `FromIterator` is already defined here
    
    warning: the item `IntoIterator` is imported redundantly
       --> src/minmax.rs:3:31
        |
    3   | use std::iter::{FromIterator, IntoIterator};
        |                               ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `IntoIterator` is already defined here
    
    warning: the item `Default` is imported redundantly
       --> src/online.rs:1:5
        |
    1   | use std::default::Default;
        |     ^^^^^^^^^^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:125:13
        |
    125 |     pub use super::v1::*;
        |             --------- the item `Default` is already defined here
    
    warning: the item `FromIterator` is imported redundantly
       --> src/online.rs:3:17
        |
    3   | use std::iter::{FromIterator, IntoIterator};
        |                 ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `FromIterator` is already defined here
    
    warning: the item `IntoIterator` is imported redundantly
       --> src/online.rs:3:31
        |
    3   | use std::iter::{FromIterator, IntoIterator};
        |                               ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `IntoIterator` is already defined here
    
    warning: the item `Default` is imported redundantly
       --> src/unsorted.rs:3:5
        |
    3   | use std::default::Default;
        |     ^^^^^^^^^^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:125:13
        |
    125 |     pub use super::v1::*;
        |             --------- the item `Default` is already defined here
    
    warning: the item `FromIterator` is imported redundantly
       --> src/unsorted.rs:4:17
        |
    4   | use std::iter::{FromIterator, IntoIterator};
        |                 ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `FromIterator` is already defined here
    
    warning: the item `IntoIterator` is imported redundantly
       --> src/unsorted.rs:4:31
        |
    4   | use std::iter::{FromIterator, IntoIterator};
        |                               ^^^^^^^^^^^^
        |
       ::: /Users/joelnatividad/.rustup/toolchains/nightly-aarch64-apple-darwin/lib/rustlib/src/rust/library/std/src/prelude/mod.rs:129:13
        |
    129 |     pub use core::prelude::rust_2021::*;
        |             ------------------------ the item `IntoIterator` is already defined here
    
    warning: `qsv-stats` (lib) generated 12 warnings
    jqnatividad committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    5870d3c View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    5258120 View commit details
    Browse the repository at this point in the history
  5. qsv-stats 0.13.0 release

    jqnatividad committed Mar 12, 2024
    Configuration menu
    Copy the full SHA
    c1c2e21 View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2024

  1. Configuration menu
    Copy the full SHA
    9172c19 View commit details
    Browse the repository at this point in the history
  2. refactor modes_on_sorted

    - Use just one vec for both values and modes
    - change it to compile modes in a single pass, not two passes like before
    jqnatividad committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    5120dd6 View commit details
    Browse the repository at this point in the history
  3. microoptimize keep_count

    jqnatividad committed Mar 31, 2024
    Configuration menu
    Copy the full SHA
    2467af3 View commit details
    Browse the repository at this point in the history

Commits on Apr 1, 2024

  1. Configuration menu
    Copy the full SHA
    8b08b67 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7ced808 View commit details
    Browse the repository at this point in the history
  3. comment out mode_hashmap/mode2

    as we do not use it in qsv
    jqnatividad committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    4a469c6 View commit details
    Browse the repository at this point in the history
  4. 0.14.0 release

    jqnatividad committed Apr 1, 2024
    Configuration menu
    Copy the full SHA
    443f27e View commit details
    Browse the repository at this point in the history
Loading