Skip to content

Commit

Permalink
Make logical operators work on array of booleans (#48)
Browse files Browse the repository at this point in the history
* Add CompiledVecExpr to handle closure that returns array of bool

* Make logical operators work on array of booleans
  • Loading branch information
marmeladema committed Sep 23, 2020
1 parent 785ba0c commit 2587e7e
Show file tree
Hide file tree
Showing 10 changed files with 715 additions and 130 deletions.
3 changes: 2 additions & 1 deletion engine/examples/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ fn main() {
int: Int,
bool: Bool,
str_arr: Array(Bytes),
str_map: Map(Bytes)
str_map: Map(Bytes),
bool_arr: Array(Bool),
};

scheme
Expand Down
Loading

0 comments on commit 2587e7e

Please sign in to comment.