2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: dfr all-false
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
|
|
|
|
Returns true if all values are false
|
|
|
|
|
|
|
|
## Signature
|
|
|
|
|
|
|
|
```> dfr all-false ```
|
|
|
|
|
|
|
|
## Examples
|
|
|
|
|
|
|
|
Returns true if all values are false
|
|
|
|
```shell
|
2022-03-03 01:55:03 +01:00
|
|
|
> [false false false] | dfr to-df | dfr all-false
|
2022-02-14 03:22:51 +01:00
|
|
|
```
|
|
|
|
|
|
|
|
Checks the result from a comparison
|
|
|
|
```shell
|
|
|
|
> let s = ([5 6 2 10] | dfr to-df);
|
|
|
|
let res = ($s > 9);
|
|
|
|
$res | dfr all-false
|
|
|
|
```
|