JT
16faafb7a8
Rename the use of invocation to subexpression ( #3568 )
...
* Rename the use of invocation to subexpression
* Fix test name
2021-06-07 20:08:35 +12:00
JT
751de20f93
Do a bit more cleanup of block params ( #3455 )
...
* Do a bit more cleanup of block params
* Do a bit more cleanup of block params
2021-05-21 19:04:27 +12:00
JT
25a8caa9b0
Simplify expressions ( #3389 )
...
* WIP: experiment with simpler expressions
* fix simple invoke
* update tests
* fix a few tests
* Make paren parsing more robust
* fix external args
* Remove old invocation
* Update tests
* Update tests
2021-05-12 13:01:48 +12:00
JT
fc59291191
Simplify down to one type of context ( #3379 )
...
* Simplify down to one type of context
* More simplification
2021-05-03 11:45:55 +12:00
Leonhard Kipp
5c2199e7f4
Move any to enginep style ( #3324 )
2021-04-22 20:35:45 +12:00
Jonathan Turner
5f550a355b
Split OutputStream into ActionStream/OutputStream ( #3304 )
...
* Split OutputStream into ActionStream/OutputStream
* Fmt
* Missed update
* Cleanup helper names
* Fmt
2021-04-12 14:35:01 +12:00
Jonathan Turner
073e5727c6
Switch to "engine-p" ( #3270 )
...
* WIP
* WIP
* first builds
* Tests pass
2021-04-06 11:19:43 -05:00
Andrés N. Robalino
e278ca61d1
commands: any? all? ( #3252 )
...
* commands: any? all?
We can check if `any` (or `all`) rows of tables match predicates.
Small `all?` example: Given the following table with `services` running:
```
> echo [[status]; [UP] [UP]]
───┬────────
# │ status
───┼────────
0 │ UP
1 │ UP
───┴────────
```
We can ask if all services are UP, like so:
```
> echo [[status]; [UP] [UP]] | all? status == UP
true
```
* Fix any? signature.
2021-04-03 13:40:54 -05:00