haskell / vector

An efficient implementation of Int-indexed arrays (both mutable and immutable), with a powerful loop optimisation framework .
Other
366 stars 139 forks source link

Export `findIndexR` from the non-generic vector modules #469

Closed toyboot4e closed 1 year ago

toyboot4e commented 1 year ago

findIndexR was only in the generic module and could be missed.

This PR adds type-restricted versions of findIndexR to the non-generic vector modules (plain Vector, Primitive, Storable and Unboxed). It also adds Does not fuse. sentences to their documents.

Related: #172

Shimuuar commented 1 year ago

Thank you!