image-rs / imageproc

Image processing operations
MIT License
755 stars 148 forks source link

cleaner syntax #438

Closed TianyiShi2001 closed 4 years ago

TianyiShi2001 commented 4 years ago

let (a0, a1, a2) = (aa[0], aa[1], aa[2]) can be rewritten as let [a0, a1, a2] = aa as long as the size is fixed

theotherphil commented 4 years ago

Nice!