Skip to content

Commit

Permalink
generate range_zip for common arities
Browse files Browse the repository at this point in the history
  • Loading branch information
teh-cmc committed Apr 8, 2024
1 parent d3b8a39 commit 324701d
Show file tree
Hide file tree
Showing 5 changed files with 3,622 additions and 1 deletion.
5 changes: 5 additions & 0 deletions crates/re_query2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,11 @@ name = "clamped_zip"
required-features = ["codegen"]


[[bin]]
name = "range_zip"
required-features = ["codegen"]


[[bench]]
name = "latest_at"
harness = false
4 changes: 3 additions & 1 deletion crates/re_query2/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
//! Provide query-centric access to the [`re_data_store`].
pub mod clamped_zip;
mod latest_at;
mod promise;
mod visible_history;

pub mod clamped_zip;
pub mod range_zip;

pub use self::clamped_zip::*;
pub use self::latest_at::{latest_at, LatestAtComponentResults, LatestAtResults};
pub use self::promise::{Promise, PromiseId, PromiseResolver, PromiseResult};
Expand Down
1 change: 1 addition & 0 deletions crates/re_query2/src/range_zip/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
generated.rs linguist-generated=true
Loading

0 comments on commit 324701d

Please sign in to comment.