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

Support for data() method call for C++11 and after #609

Closed
wants to merge 2 commits into from

Commits on Feb 27, 2021

  1. Support for data() method call for C++11

    To get a pointer to the first element of the underlying array used by the _vector_, C++11 and beyond, provides the ```data()``` method. 
    Support for this call has been added with suitable preprocessor checks for the C++ standard used during compilation.
    rishitc committed Feb 27, 2021
    Configuration menu
    Copy the full SHA
    8371da1 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2021

  1. Moved calls to &*begin() to data()

    Reduced code repetition and unified all the operations and calls of ```&*begin()``` to ```data()```.
    rishitc committed Feb 28, 2021
    Configuration menu
    Copy the full SHA
    f6fbd27 View commit details
    Browse the repository at this point in the history