add more builtin cells
This commit is contained in:
parent
fcd96c0efd
commit
7a9a54c685
|
@ -53,6 +53,8 @@ fn make_binop_callable(name: &str, celltype: &'static str) -> Callable {
|
||||||
pub fn get_builtins() -> Vec<Callable> {
|
pub fn get_builtins() -> Vec<Callable> {
|
||||||
vec![
|
vec![
|
||||||
make_binop_callable("and", "$and"),
|
make_binop_callable("and", "$and"),
|
||||||
|
make_binop_callable("or", "$or"),
|
||||||
make_binop_callable("xor", "$xor"),
|
make_binop_callable("xor", "$xor"),
|
||||||
|
make_binop_callable("xnor", "$xnor"),
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue