blob: b680ba4b3ce91249591ca5545e6add02cea31869 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
*View this file with results and syntax highlighting [here](https://mlochbaum.github.io/BQN/help/⚇depth.html).*
# Circle With Two Dots (`⚇`)
`𝔽⚇𝕘 𝕩`, `𝕨 𝔽⚇𝕘 𝕩`: Depth
Apply `𝔽` to the cells of the arguments at depth given in `𝕘`.
1⊸↓⚇1 ⟨⟨1,2,3⟩, ⟨4,5,6⟩⟩
⟨ ⟨ 2 3 ⟩ ⟨ 5 6 ⟩ ⟩
1 ↓⚇1 ⟨⟨1,2,3⟩, ⟨4,5,6⟩⟩
⟨ ⟨ 2 3 ⟩ ⟨ 5 6 ⟩ ⟩
|