Вот тот же объединенный оператор в более подробной форме с комментариями:
Each←{ ⍝ Monadic operator; ⍺⍺ is the operand function
⍺←⊢ ⍝ If called monadically ⍺ won't do anything (it will be the no-op function)
Apply←{ ⍝ This operator applies its operand function (⍺⍺) to disclosed argument(s)
⍝ and encloses the result
×⎕NC'⍺': ⊂ (⊃⍺) ⍺⍺ (⊃⍵) ⍝ if we have a left argument, apply ⍺⍺ dyadically (enclose both)
⊂ ⍺⍺ (⊃⍵) ⍝ otherwise, apply ⍺⍺ just on the enclosed ⍵
}
⍝ Now we're ready to apply to separate elements:
⍺ ( (⍺⍺ Apply)⍤0 ) ⍵ ⍝ Even though we have ⍺ here, it may be ⊢ causes a monadic call to ⍺⍺
}