Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/third_party/rust/zerotrie/src/builder/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 1000 B image not shown  

Quelle  branch_meta.rs

  Sprache: Rust
 

// This file is part of ICU4X. For terms of use, please see the file
// called LICENSE at the top level of the ICU4X source tree
// (online at: https://github.com/unicode-org/icu4x/blob/main/LICENSE ).

/// Intermediate metadata for a branch node under construction.
#[derive(Debug, Clone, Copy)]
pub(cratestruct BranchMeta {
    /// The lead byte for this branch. Formerly it was required to be an ASCII byte, but now
    /// it can be any byte.
    pub ascii: u8,
    /// The size in bytes of the trie data reachable from this branch.
    pub local_length: usize,
    /// The size in bytes of this and all later sibling branches.
    pub cumulative_length: usize,
    /// The number of later sibling branches, including this.
    pub count: usize,
}

impl BranchMeta {
    /// Creates a new empty [`BranchMeta`].
    pub const fn default() -> Self {
        BranchMeta {
            ascii: 0,
            cumulative_length: 0,
            local_length: 0,
            count: 0,
        }
    }
}

Messung V0.5 in Prozent
C=86 H=98 G=91

¤ Dauer der Verarbeitung: 0.18 Sekunden  (vorverarbeitet am  2026-08-25) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.