-
# Arrays
The Ultimate Topic List
[https://youkn0wwho.academy/topic-list/arrays](https://youkn0wwho.academy/topic-list/arrays)
-
Minimal repro that fails to compile:
```rust
use spirv_std::spirv;
#[spirv(fragment)]
pub fn main() {
let x = [[1; 2]; 1];
}
```
Bisects to https://github.com/Rust-GPU/rust-gpu/commi…
-
Sometimes it is useful to use an array (e.g. `[i32; 2]`) instead of a homogeneous type (`(i32; i32)`). Can we try to support arrays in `input!` macro? At least, current syntax `[i32; n]` collides wi…
-
arrays, where maxlen != minlen, that are inside of arrays cannor be turned into structured numpy arrays.
-
-
I know it's not quite done, but wondering if we are shooting for having labeled arrays in this one? I'll sketch in empty space for it and help push it over the line if so
-
While the idea of using a function to create a nested namespace is neat, it makes creating arrays harder:
```python
import marray
import numpy as np
xp = marray.masked_array(np)
a = xp.asarra…
-
### What's hard to do? (limit 100 words)
Trying to take advantage of channel arrays now that #704 is fixed.
However, I think I'm blocked by the fact that I can't keep track of tokens across the ch…
-
Presume this is on the TODO list :)
I'd like to use
```swift
@JavaClass("java.nio.ByteBuffer")
open class JavaNIOByteBuffer: JavaNIOBuffer {
...
@JavaMethod
open func get(_ arg0: [Int8]…
-
It seems WasmGC currently can only create WasmGC arrays via the following instructions:
* `array.new`
* `array.new_default`
* `array.new_fixed`
* `array.new_elem`
* `array.new_data`
If the arr…