MCPcopy Create free account
hub / github.com/BillyDM/Firewheel / build

Method build

crates/firewheel-core/src/diff/mod.rs:684–690  ·  view source on GitHub ↗

Convert this path builder into a [`ParamPath`].

(self)

Source from the content-addressed store, hash-verified

682
683 /// Convert this path builder into a [`ParamPath`].
684 pub fn build(self) -> ParamPath {
685 if self.0.len() == 1 {
686 ParamPath::Single(self.0[0])
687 } else {
688 ParamPath::Multi(ArcGc::new_unsized(|| Arc::<[u32]>::from(self.0.as_slice())))
689 }
690 }
691}
692
693/// An event queue for diffing.

Callers 2

push_paramMethod · 0.80
diffMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected