You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This is a basic library that allows one to easily create dynamic arrays using a
10
10
* You can track an array with a handler, returned from da_new().
11
11
* You are advised to delete any dynamic array no longer needed. Simply call da_delete(h), where **h** is the handler.
12
12
* You also have the option of clearing **all** dynamic arrays. Simply call da_delete_all(). It will clear all dynamic arrays from the stack, no exceptions.
13
-
* All of the remaining functions are simply wrappers for the std::vector library. You can insert elements or arrays of elements at any location in a given dynamic array.
13
+
* All of the remaining functions are simply wrappers for the std::vector library. You can insert elements or arrays of elements at any location in a given dynamic array. You can erase any element(s) at the beginning, middle, or end. You can resize, reserve, and shrink-to-fit.
14
14
* All of the individual functions are documented in detail in the include/dynamic.h file.
0 commit comments