Skip to content

Vector.h V1.0.3

Latest
Compare
Choose a tag to compare
@Mikenekro Mikenekro released this 18 Feb 05:07
· 3 commits to master since this release

This is the state in which the file was first uploaded to GitHub.

Some Features include:

  • Iterators ( For(Vector::iterator it = vec.Begin(); it < vec.End(); ++it) )
  • The basic Vector functions: Push_Back, Pop, Insert, At, Etc.
  • Some new functions: Gets(Vector item) (Gets each position in the Vector that contains that item), Pops(Vector item) (Pops each occurence of the item in the vector), etc.
  • Allocation and De-Allocation of memory
  • Generics to store objects of different types (Include an equality operator overload if you are using the Vector on one of your Classes)
  • Overloaded Operators