mirror of
https://github.com/nushell/nushell.git
synced 2024-11-29 20:03:54 +01:00
21 lines
293 B
Markdown
21 lines
293 B
Markdown
---
|
|
title: dfr is-not-null
|
|
layout: command
|
|
version: 0.59.1
|
|
---
|
|
|
|
Creates mask where value is not null
|
|
|
|
## Signature
|
|
|
|
```> dfr is-not-null ```
|
|
|
|
## Examples
|
|
|
|
Create mask where values are not null
|
|
```shell
|
|
> let s = ([5 6 0 8] | dfr to-df);
|
|
let res = ($s / $s);
|
|
$res | dfr is-not-null
|
|
```
|