We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad9bdfe commit c62b65eCopy full SHA for c62b65e
1 file changed
parser/src/defs.rs
@@ -1921,11 +1921,15 @@ primitive!(
1921
/// ex: {⍜ {⊙⊙∘}⍚⊂ 1_2 3_4_5 6_7_8_9 10}
1922
/// : {⍜⊙{⊙⊙∘}⍚⊂ 10 1_2 3_4_5 6_7_8_9 }
1923
///
1924
- /// Subscripted [inventory] operates N subarrays deep.
+ /// Subscripted [inventory] operates on rank-N subarrays.
1925
/// ex: ⍚₀∘ °△2_3_4
1926
/// : ⍚₁∘ °△2_3_4
1927
/// : ⍚₂∘ °△2_3_4
1928
/// : ⍚₃∘ °△2_3_4
1929
+ /// Making the subscript negative instead operates N ranks deep.
1930
+ /// ex: ⍚₋₁□ °△2_3_4
1931
+ /// : ⍚₋₂□ °△2_3_4
1932
+ /// : ⍚₋₃□ °△2_3_4
1933
/// Sided [inventory] [fix]es either the first or last argument so that it can be reused in multiple iterations.
1934
/// ex: ⍚⌞⊂ 1_2 3_4
1935
/// : ⍚⌟⊂ 1_2 3_4
0 commit comments