(util vector) - Extra vector utility library

Library (util vector)

This library provides extra vector utility procedures which is not provided neither (srfi :43 vectors) nor (srfi :133 vectors).

Function vector-filter pred vec
Function vector-remove pred vec

Returns newly allocated vector which contains the elements from the given vec satisfied the given pref.

The vector-filter uses the elements which pred returns true value.

The vector-remove removes the elements which pred returns true value.

Function vector-find pred vec

Returns the element of the given vec satisfies the _pred_or #f.