MCPcopy Create free account
hub / github.com/elastic/devfiler / query_point

Method query_point

src/storage/rkyvtree.rs:159–165  ·  view source on GitHub ↗

Queries the interval tree for all elements containing a given point. This runs in `O(log n + m)`.

(&self, point: K)

Source from the content-addressed store, hash-verified

157 ///
158 /// This runs in `O(log n + m)`.
159 pub fn query_point(&self, point: K) -> QueryIter<K, V> {
160 QueryIter {
161 todo: self.todo(),
162 tree: self,
163 query: Query::Point(point),
164 }
165 }
166}
167
168#[derive(Clone)]

Callers 1

symbolize_native_frameFunction · 0.80

Calls 1

todoMethod · 0.80

Tested by

no test coverage detected