From 2c50d91ec7eb8bc7890befe874a0b93729c2437e Mon Sep 17 00:00:00 2001 From: razetime Date: Wed, 19 Jan 2022 22:48:16 +0530 Subject: add h2s remove copied output, ascii filenames --- "docs/help/\342\206\225range windows.html" | 50 ------------------------------ 1 file changed, 50 deletions(-) delete mode 100644 "docs/help/\342\206\225range windows.html" (limited to 'docs/help/↕range windows.html') diff --git "a/docs/help/\342\206\225range windows.html" "b/docs/help/\342\206\225range windows.html" deleted file mode 100644 index c95dc2ea..00000000 --- "a/docs/help/\342\206\225range windows.html" +++ /dev/null @@ -1,50 +0,0 @@ - - - - BQN: Up Down Arrow (`↕`) - - -

Up Down Arrow (↕)

-

↕ 𝕩: Range

-

Return all indices to index into an array of shape 𝕩, in the shape described by 𝕩.

-

When given a single number, range from 0 to 𝕩-1.

-
   ↕ 4
-⟨ 0 1 2 3 ⟩
-   ↕ 4β€Ώ5
-β”Œβ”€                                         
-β•΅ ⟨ 0 0 ⟩ ⟨ 0 1 ⟩ ⟨ 0 2 ⟩ ⟨ 0 3 ⟩ ⟨ 0 4 ⟩  
-  ⟨ 1 0 ⟩ ⟨ 1 1 ⟩ ⟨ 1 2 ⟩ ⟨ 1 3 ⟩ ⟨ 1 4 ⟩  
-  ⟨ 2 0 ⟩ ⟨ 2 1 ⟩ ⟨ 2 2 ⟩ ⟨ 2 3 ⟩ ⟨ 2 4 ⟩  
-  ⟨ 3 0 ⟩ ⟨ 3 1 ⟩ ⟨ 3 2 ⟩ ⟨ 3 3 ⟩ ⟨ 3 4 ⟩  
-                                          β”˜
-
-

𝕨 ↕ 𝕩: Windows

-

Overlapping slices of 𝕩 which are of shape 𝕨.

-
   5 ↕ "abcdefg"
-β”Œβ”€       
-β•΅"abcde  
-  bcdef  
-  cdefg" 
-        β”˜
-   a ← 3β€Ώ3β₯Šβ†•9
-β”Œβ”€       
-β•΅ 0 1 2  
-  3 4 5  
-  6 7 8  
-        β”˜
-   2β€Ώ2 ↕ a
-β”Œβ”€     
-┆ 0 1  
-  3 4  
-       
-  1 2  
-  4 5  
-       
-       
-  3 4  
-  6 7  
-       
-  4 5  
-  7 8  
-      β”˜
-
-- cgit v1.2.3