aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2021-05-01 21:09:17 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2021-05-01 21:09:17 -0400
commit258dad824c4c7205a311e197e9c0d67cdbd4e6d0 (patch)
tree1847473d87ad67d03e3c76cd6f07533fc248c9d4 /src
parent4d4f0c1fadf92b2418b8b7dd2c53258e35183ddb (diff)
Put loops inside the blocks in _perv
Diffstat (limited to 'src')
-rw-r--r--src/r1.bqn7
1 files changed, 3 insertions, 4 deletions
diff --git a/src/r1.bqn b/src/r1.bqn
index 0c737f9c..398b079b 100644
--- a/src/r1.bqn
+++ b/src/r1.bqn
@@ -63,11 +63,10 @@ _eachd←{
}
_perv←{ # Pervasion
- R←𝔽{𝕨𝔽_perv𝕩}
- +○IsArray◶⟨
+ R←+○IsArray◶⟨
𝔽
- R⌜⊘(>○IsArray◶{𝕨{𝕗R𝕩}⌜𝕩}‿{𝕩{𝕩R𝕗}⌜𝕨}) _fillBy_ R
- R _eachd _fillBy_ R
+ {R⌜𝕩}⊘(>○IsArray◶{𝕨⊸R⌜𝕩}‿{R⟜𝕩⌜𝕨}) _fillBy_ {𝕨R𝕩}
+ {𝕨R _eachd𝕩} _fillBy_ {𝕨R𝕩}
}