diff options
Diffstat (limited to 'help/sortup_and.md')
| -rw-r--r-- | help/sortup_and.md | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/help/sortup_and.md b/help/sortup_and.md new file mode 100644 index 00000000..bf727848 --- /dev/null +++ b/help/sortup_and.md @@ -0,0 +1,23 @@ +*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/sortup_and.html).* + +# Logical And (`∧`) + +## `∧ 𝕩`: Sort Up + +Sort array `𝕩` in ascending order. + + ∧ 3‿1‿4‿1‿5 + + + +## `𝕨 ∧ 𝕩`: Logical And + +Logical And of `𝕨` and `𝕩`. + +[Pervasive.](https://mlochbaum.github.io/BQN/doc/arithmetic.html#pervasion) + + 1 ∧ 1 + + 1‿0 ∧ 1‿1 + + |
