• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

vigna / webgraph-rs / 16989075503

15 Aug 2025 11:30AM UTC coverage: 49.923% (-0.05%) from 49.968%
16989075503

Pull #132

github

web-flow
Merge 87131da39 into dd7049ac5
Pull Request #132: Optimize ArcListGraph::from_iter when the underlying iterator is already truncated

2 of 7 new or added lines in 1 file covered. (28.57%)

1 existing line in 1 file now uncovered.

3886 of 7784 relevant lines covered (49.92%)

23606736.23 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/cli/src/bench/mod.rs
1
/*
2
 * SPDX-FileCopyrightText: 2023 Tommaso Fontana
3
 *
4
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
5
 */
6

7
use anyhow::Result;
8
use clap::Subcommand;
9

10
use super::GlobalArgs;
11

12
pub mod bf_visit;
13
pub mod bvgraph;
14

15
#[derive(Subcommand, Debug)]
16
#[command(name = "bench")]
17
/// A few benchmark utilities.
18
pub enum SubCommands {
19
    Bvgraph(bvgraph::CliArgs),
20
    BFVisit(bf_visit::CliArgs),
21
}
22

23
pub fn main(global_args: GlobalArgs, subcommand: SubCommands) -> Result<()> {
×
24
    match subcommand {
×
25
        SubCommands::Bvgraph(args) => bvgraph::main(global_args, args),
×
26
        SubCommands::BFVisit(args) => bf_visit::main(global_args, args),
×
27
    }
28
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc