mirror of
https://github.com/nushell/nushell.git
synced 2024-12-01 21:03:58 +01:00
96a1bf5f8d
* Change true/false to keywords * oops, clippy * Both kinds of bools * Add in some boolean variables * disable py virtualenv test for now
19 lines
249 B
Markdown
19 lines
249 B
Markdown
---
|
|
title: dfr arg-true
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Returns indexes where values are true
|
|
|
|
## Signature
|
|
|
|
```> dfr arg-true ```
|
|
|
|
## Examples
|
|
|
|
Returns indexes where values are true
|
|
```shell
|
|
> [false true false] | dfr to-df | dfr arg-true
|
|
```
|