aboutsummaryrefslogtreecommitdiff
path: root/docs/doc/depth.html
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2020-09-24 11:00:52 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2020-09-24 11:00:52 -0400
commit9bccc26a0c3231d7cc9adc37c1a850ef44fd436a (patch)
treed9ee03b98126b14423af4d07ae4fd7d84589f1aa /docs/doc/depth.html
parent3863c3837ded859328243ae42f524c45741c872e (diff)
Add breadcrumbs to generated html
Diffstat (limited to 'docs/doc/depth.html')
-rw-r--r--docs/doc/depth.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/doc/depth.html b/docs/doc/depth.html
index a80cf4c9..d67ce4ed 100644
--- a/docs/doc/depth.html
+++ b/docs/doc/depth.html
@@ -3,7 +3,7 @@
<link href="../style.css" rel="stylesheet"/>
<title>BQN: Depth</title>
</head>
-<div class="nav"><a href="https://github.com/mlochbaum/BQN">BQN</a></div>
+<div class="nav"><a href="https://github.com/mlochbaum/BQN">BQN</a> / <a href="../index.html">main</a> / <a href="index.html">doc</a></div>
<h1 id="depth">Depth</h1>
<p>The depth of an array is the greatest level of array nesting it attains, or, put another way, the greatest number of times you can pick an element starting from the original array before reaching an atom. The monadic function Depth (<code><span class='Function'>≡</span></code>) returns the depth of its argument, while the 2-modifier Depth (<code><span class='Modifier2'>⚇</span></code>) can control the way its left operand is applied based on the depth of its arguments. Several primitive functions also use the depth of the left argument to decide whether it applies to a single axis of the right argument or to several axes.</p>
<h2 id="the-depth-function">The Depth function</h2>