MCPcopy Create free account
hub / github.com/clockworklabs/SpacetimeDB / contains

Method contains

crates/commitlog/src/stream/common.rs:106–112  ·  view source on GitHub ↗
(&self, item: &u64)

Source from the content-addressed store, hash-verified

104 }
105
106 pub fn contains(&self, item: &u64) -> bool {
107 item >= &self.start
108 && match &self.end {
109 None => true,
110 Some(end) => item <= end,
111 }
112 }
113}
114
115impl RangeBounds<u64> for RangeFromMaybeToInclusive {

Callers 15

ensure_domain_tldFunction · 0.45
try_fromMethod · 0.45
de_fractionFunction · 0.45
insert_queryMethod · 0.45
collect_targets_innerMethod · 0.45
buildMethod · 0.45
newMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected