aboutsummaryrefslogtreecommitdiff
path: root/doc/join.md
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2020-08-16 22:14:53 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2020-08-16 22:14:53 -0400
commitbda30287098ab9002bc4d3e8290ed06c21abec28 (patch)
tree17e2c7599c0f2af08accab4363728a4ae2dbbd21 /doc/join.md
parent144854e542f6f853d10d9efed95de2d1a5025758 (diff)
Add document on Solo, Couple, and Merge
Diffstat (limited to 'doc/join.md')
-rw-r--r--doc/join.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/join.md b/doc/join.md
index 5a58aaac..05171e24 100644
--- a/doc/join.md
+++ b/doc/join.md
@@ -2,7 +2,7 @@
# 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 Merge (`>`) does to Couple (`≍`): `a≍b` is `>a‿b` and `a∾b` is `∾a‿b`. While Merge and Couple combine arrays (the elements of Merge's argument, or the arguments themselves for Couple) along a new leading axis, Join and Join to combine them along the existing leading axis. Both Merge and Join can also be called on a higher-rank array, causing Merge to add multiple leading axes while Join combines elements along multiple existing axes.
+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 [Merge](couple.md) (`>`) does to Couple (`≍`): `a≍b` is `>a‿b` and `a∾b` is `∾a‿b`. While Merge and Couple combine arrays (the elements of Merge's argument, or the arguments themselves for Couple) along a new leading axis, Join and Join to combine them along the existing leading axis. Both Merge and Join can also be called on a higher-rank array, causing Merge 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).