diff options
| author | Marshall Lochbaum <mwlochbaum@gmail.com> | 2020-07-16 18:50:24 -0400 |
|---|---|---|
| committer | Marshall Lochbaum <mwlochbaum@gmail.com> | 2020-07-16 19:14:57 -0400 |
| commit | 1880ee9d6ec6744cc0ea990572293480ce756c89 (patch) | |
| tree | f9cd499f9865886764115c8733d1a7b5c47095a9 /doc/join.md | |
| parent | 5a7a159f4f165d9fae11b283005602be21290b1a (diff) | |
Minor edits
Diffstat (limited to 'doc/join.md')
| -rw-r--r-- | doc/join.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/join.md b/doc/join.md index cb8dfb36..cb940699 100644 --- a/doc/join.md +++ b/doc/join.md @@ -1,3 +1,5 @@ +# Join + Join (`∾`) is an extension of the monadic function [Raze](https://aplwiki.com/wiki/Raze) from A+ and J to arbitrary argument ranks. It has the same relationship to Join to, the dyadic function sharing the same glyph, as Unbox (`>`) does to Couple (`≍`): `a≍b` is `>a‿b` and `a∾b` is `∾a‿b`. While Unbox and Couple combine arrays (the elements of Unbox's argument, or the arguments themselves for Coups) along a new leading axis, Join and Join to combine them along the existing leading axis. Both Unbox and Join can also be called on a higher-rank array, causing Unbox to add multiple leading axes while Join combines elements along multiple existing axes. Join can be used to combine several strings into a single string, like `array.join()` in Javascript (but it doesn't force the result to be a string). |
