<?xml version="1.0" encoding="utf-8" ?><rss version="2.0"><channel><title>Bing: Vector Math in Game Development</title><link>http://www.bing.com:80/search?q=Vector+Math+in+Game+Development</link><description>Search results</description><image><url>http://www.bing.com:80/s/a/rsslogo.gif</url><title>Vector Math in Game Development</title><link>http://www.bing.com:80/search?q=Vector+Math+in+Game+Development</link></image><copyright>Copyright © 2026 Microsoft. All rights reserved. These XML results may not be used, reproduced or transmitted in any manner or for any purpose other than rendering Bing results within an RSS aggregator for your personal, non-commercial use. Any other use of these results requires express written permission from Microsoft Corporation. By accessing this web page or using these results in any manner whatsoever, you agree to be bound by the foregoing restrictions.</copyright><item><title>std::vector - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector</link><description>std::vector (for T other than bool) meets the requirements of Container, AllocatorAwareContainer(since C++11), SequenceContainer, ContiguousContainer(since C++17) and ReversibleContainer. All member functions of std::vector are constexpr: it is possible to create and use std::vector objects in the evaluation of a constant expression.</description><pubDate>Wed, 24 Jun 2026 06:38:00 GMT</pubDate></item><item><title>std::vector&lt;T,Allocator&gt;::vector - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/vector</link><description>Constructs a new vector from a variety of data sources, optionally using a user supplied allocator alloc.</description><pubDate>Thu, 25 Jun 2026 03:16:00 GMT</pubDate></item><item><title>std::vector&lt;bool&gt; - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector_bool</link><description>std:: vector &lt;bool&gt; is a possibly space-efficient specialization of std::vector for the type bool. The manner in which std:: vector &lt;bool&gt; is made space efficient (as well as whether it is optimized at all) is implementation defined.</description><pubDate>Fri, 26 Jun 2026 18:17:00 GMT</pubDate></item><item><title>operator==,!=,&lt;,&lt;=,&gt;,&gt;=,&lt;=&gt; (std::vector) - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/operator_cmp</link><description>Compares the contents of two vector s. 1,2) Checks if the contents of lhs and rhs are equal, that is, they have the same number of elements and each element in lhs compares equal with the element in rhs at the same position. 3-6) Compares the contents of lhs and rhs lexicographically.</description><pubDate>Thu, 25 Jun 2026 04:27:00 GMT</pubDate></item><item><title>std::vector&lt;T,Allocator&gt;::~vector - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/~vector</link><description>Destroys the vector. The destructors of the elements are called (in unspecified order) and the dynamically allocated storage (if any) is deallocated. Note, that if the elements are pointers, the pointed-to objects are not destroyed. Complexity Linear in the size of the vector.</description><pubDate>Sat, 20 Jun 2026 15:46:00 GMT</pubDate></item><item><title>std::vector&lt;T,Allocator&gt;::erase - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/erase</link><description>Iterators (including the end() iterator) and references to the elements at or after the point of the erase are invalidated. The iterator pos must be valid and dereferenceable. Thus the end () iterator (which is valid, but is not dereferenceable) cannot be used as a value for pos. The iterator first does not need to be dereferenceable if first == last: erasing an empty range is a no-op.</description><pubDate>Wed, 24 Jun 2026 05:33:00 GMT</pubDate></item><item><title>std::erase, std::erase_if (std::vector) - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/erase2</link><description>auto it = std::remove(c.begin(), c.end(), value); auto r = c.end() - it; c.erase(it, c.end()); return r;</description><pubDate>Thu, 25 Jun 2026 20:12:00 GMT</pubDate></item><item><title>std::vector&lt;T,Allocator&gt;::reserve - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/reserve</link><description>Increase the capacity of the vector (the total number of elements that the vector can hold without requiring reallocation) to a value that's greater or equal to new_cap. If new_cap is greater than the current capacity (), new storage is allocated, otherwise the function does nothing. reserve() does not change the size of the vector. If new_cap is greater than capacity (), all iterators ...</description><pubDate>Thu, 25 Jun 2026 06:43:00 GMT</pubDate></item><item><title>std::vector&lt;T,Allocator&gt;::resize - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/resize</link><description>Vector capacity is never reduced when resizing to smaller size because that would invalidate all iterators, while the specification only invalidates the iterators to/after the erased elements.</description><pubDate>Wed, 24 Jun 2026 16:03:00 GMT</pubDate></item><item><title>std::vector&lt;T,Allocator&gt;::emplace - cppreference.com</title><link>https://en.cppreference.com/cpp/container/vector/emplace</link><description>Return value Iterator pointing to the emplaced element. Complexity Linear in the distance between pos and end (). Exceptions If an exception is thrown other than by the copy constructor, move constructor, assignment operator, or move assignment operator of T, or if an exception is thrown while emplace is used to insert a single element at the end and T is either CopyInsertable or nothrow move ...</description><pubDate>Sat, 27 Jun 2026 01:19:00 GMT</pubDate></item></channel></rss>