Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add boxed constructors to ArrayVec and ArrayString #244

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Sep 6, 2023

  1. add boxed constructors to ArrayVec and ArrayString

    Usually one would need to construct them on the stack and then move them
    to the heap if neccessary. This limits the possible capacity to the
    stack size. This allows creation of them directly on the head, skipping
    the stack, which allows for larger capacities.
    Icxolu committed Sep 6, 2023
    Configuration menu
    Copy the full SHA
    6754a92 View commit details
    Browse the repository at this point in the history