diff options
| author | razetime <raghuallthetime@hotmail.com> | 2022-01-19 22:48:16 +0530 |
|---|---|---|
| committer | razetime <raghuallthetime@hotmail.com> | 2022-01-19 22:48:16 +0530 |
| commit | 2c50d91ec7eb8bc7890befe874a0b93729c2437e (patch) | |
| tree | eb621b86b3c8269ab2dd63bd3c628acdf3521059 /help/merge_great.md | |
| parent | 6c111f1e71e945f66977aecc3322318aa21beacc (diff) | |
add h2s remove copied output, ascii filenames
Diffstat (limited to 'help/merge_great.md')
| -rw-r--r-- | help/merge_great.md | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/help/merge_great.md b/help/merge_great.md new file mode 100644 index 00000000..c91b3b8b --- /dev/null +++ b/help/merge_great.md @@ -0,0 +1,37 @@ +*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/merge_great.html).* + +# Greater Than (`>`) + +## `> 𝕩`: Merge + +Add the rank of an element of `𝕩` to the rank of `𝕩`. + +All elements must have the same rank. + +Returns atomic values as is. + + + a ← ⟨⟨1, 2⟩, ⟨3, 4⟩⟩ + + >a + + ≢a + + ≢>a + + + + +## `𝕨 > 𝕩`: Greater Than + +`𝕨` and `𝕩` can both be either numbers or characters. + +[Pervasive.](https://mlochbaum.github.io/BQN/doc/arithmetic.html#pervasion) + + 1 > 3 + + 2‿3‿0 > 3‿1‿0 + + 'a' > 'b' + + |
