package vec

  1. Overview
  2. Docs
Fast, safe mutable dynamic arrays

Install

Dune Dependency

Authors

Maintainers

Sources

v0.4.0.tar.gz
md5=3f89caa9ce2738c4c1acc1e66656646b
sha512=3b1d7314229ead76cd211bffb173ffcc6f2f52166113d32b1c3938a59a61c611b0517ce86102146dd800c29cb8200424204de0eaf0f6e7830abcdd8ca4c2532a

CHANGES.md.html

CHANGES.md

v0.4.0 [2024-01-18]

  • Remove ability to customize vector growth rate.

  • Remove _exn suffix from throwing APIs, and add try_ prefix to their non-throwing versions.

  • Add unsafe versions of to_array and of_array that don't perform any copying.

  • Move the contents of Vec.Let_syntax into Vec.Infix.

v0.3.0 [2021-06-05]

  • Revise most type signatures to have consistent permission requirements.

  • Add APIs for inserting/removing elements at a specific index.

v0.2.0 [2021-05-16]

  • Add new APIs for clearing, filtering, comparing, and pretty-printing vectors.

  • Rename any to exists and all to for_all to be consistent with Stdlib naming.

  • Remove unsafe steal APIs.

v0.1.0 [2020-10-03]

  • Initial release.