-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
0bbacdf
commit 80e9660
Showing
3 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
--- | ||
title: Random Boolean | ||
id: random-bool | ||
hide_title: true | ||
slug: /transformers/system/random-bool | ||
--- | ||
|
||
import { TransformerPageHeader } from '@site/src/CustomComponents/TransformerPageHeader.tsx'; | ||
|
||
import { DocsTable } from '@site/src/CustomComponents/DocsTable.tsx'; | ||
|
||
<TransformerPageHeader | ||
title="Random Boolean" | ||
type="bool" | ||
apiRef="https://github.com/nucleuscloud/neosync/blob/main/worker/internal/benthos/transformers/random_bool.go" | ||
/> | ||
|
||
## Definition | ||
|
||
The random boolean transformer randomly generates a boolean value. | ||
|
||
## Configurations | ||
|
||
There are no configurations for the random boolean transformer. | ||
|
||
## Examples | ||
|
||
Here are some examples of what an output random boolean value may look like. | ||
|
||
<DocsTable | ||
headers={['Example Input', 'Example Output']} | ||
rowData={[ | ||
{ | ||
data: ['false', 'true'], | ||
}, | ||
{ | ||
data: ['true', 'false'], | ||
}, | ||
]} | ||
/> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters