2022-02-14 03:22:51 +01:00
|
|
|
---
|
|
|
|
title: empty?
|
|
|
|
layout: command
|
2022-03-04 13:10:09 +01:00
|
|
|
version: 0.59.1
|
2022-02-14 03:22:51 +01:00
|
|
|
---
|
2020-10-06 12:21:20 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
Check for empty values.
|
2020-10-06 12:21:20 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Signature
|
2020-10-06 12:21:20 +02:00
|
|
|
|
2022-03-11 11:39:54 +01:00
|
|
|
```> empty? ...rest```
|
2020-10-06 12:21:20 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
## Parameters
|
2020-10-06 12:21:20 +02:00
|
|
|
|
2022-02-14 03:22:51 +01:00
|
|
|
- `...rest`: the names of the columns to check emptiness
|
|
|
|
|
|
|
|
## Examples
|
2020-10-06 12:21:20 +02:00
|
|
|
|
2022-03-11 11:39:54 +01:00
|
|
|
Check if a string is empty
|
2020-10-06 12:21:20 +02:00
|
|
|
```shell
|
2022-02-14 03:22:51 +01:00
|
|
|
> '' | empty?
|
2020-10-06 12:21:20 +02:00
|
|
|
```
|
|
|
|
|
2022-03-11 11:39:54 +01:00
|
|
|
Check if a list is empty
|
2020-10-06 12:21:20 +02:00
|
|
|
```shell
|
2022-03-11 11:39:54 +01:00
|
|
|
> [] | empty?
|
2020-10-06 12:21:20 +02:00
|
|
|
```
|
|
|
|
|
2022-03-11 11:39:54 +01:00
|
|
|
Check if more than one column are empty
|
2020-10-06 12:21:20 +02:00
|
|
|
```shell
|
2022-03-11 11:39:54 +01:00
|
|
|
> [[meal size]; [arepa small] [taco '']] | empty? meal size
|
2020-10-06 12:21:20 +02:00
|
|
|
```
|