Skip to content

Commit

Permalink
Merge pull request #2 from ForesightMiningSoftwareCorporation/u32_str…
Browse files Browse the repository at this point in the history
…ing_id

StringId = u32
  • Loading branch information
bonsairobo authored Dec 21, 2023
2 parents c789a78 + 485daf7 commit 3ac8ccc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "vector-expr"
authors = ["Duncan Fairbanks <duncan.fairbanks@foresightmining.com>"]
version = "0.1.0"
version = "0.2.0"
edition = "2021"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ForesightMiningSoftwareCorporation/vector_expr"
Expand Down
2 changes: 1 addition & 1 deletion src/evaluate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use rayon::prelude::{
};

/// To speed up string comparisons, we use string interning.
pub type StringId = u64;
pub type StringId = u32;

impl BoolExpression {
/// Calculates the `bool`-valued results of the expression component-wise.
Expand Down

0 comments on commit 3ac8ccc

Please sign in to comment.