#[repr(C)]pub struct QVectorOfQPointF { /* private fields */ }
Expand description
The QVector class is a template class that provides a dynamic array.
C++ class: QVector<QPointF>
.
The QVector class is a template class that provides a dynamic array.
QVector<T> is one of Qt's generic container classes. It stores its items in adjacent memory locations and provides fast index-based access.
QList<T>, QLinkedList<T>, QVector<T>, and QVarLengthArray<T> provide similar APIs and functionality. They are often interchangeable, but there are performance consequences. Here is an overview of use cases:
- QVector should be your default first choice. QVector<T> will usually give better performance than QList<T>, because QVector<T> always stores its items sequentially in memory, where QList<T> will allocate its items on the heap unless
sizeof(T) <= sizeof(void*)
and T has been declared to be either aQ_MOVABLE_TYPE
or aQ_PRIMITIVE_TYPE
using Q_DECLARE_TYPEINFO. See the Pros and Cons of Using QList for an explanation. - However, QList is used throughout the Qt APIs for passing parameters and for returning values. Use QList to interface with those APIs.
- If you need a real linked list, which guarantees constant time insertions mid-list and uses iterators to items rather than indexes, use QLinkedList.
Note: QVector and QVarLengthArray both guarantee C-compatible array layout. QList does not. This might be important if your application must interface with a C API.
Note: Iterators into a QLinkedList and references into heap-allocating QLists remain valid as long as the referenced items remain in the container. This is not true for iterators and references into a QVector and non-heap-allocating QLists.
Here's an example of a QVector that stores integers and a QVector that stores QString values:
QVector stores its items in a vector (array). Typically, vectors are created with an initial size. For example, the following code constructs a QVector with 200 elements:
The elements are automatically initialized with a default-constructed value. If you want to initialize the vector with a different value, pass that value as the second argument to the constructor:
You can also call fill() at any time to fill the vector with a value.
QVector uses 0-based indexes, just like C++ arrays. To access the item at a particular index position, you can use operator[](). On non-const vectors, operator[]() returns a reference to the item that can be used on the left side of an assignment:
if (vector[0] == “Liz”) vector[0] = “Elizabeth”;
For read-only access, an alternative syntax is to use at():
for (int i = 0; i < vector.size(); ++i) { if (vector.at(i) == “Alfonso”) cout << “Found Alfonso at position “ << i << endl; }
at() can be faster than operator[](), because it never causes a deep copy to occur.
Another way to access the data stored in a QVector is to call data(). The function returns a pointer to the first item in the vector. You can use the pointer to directly access and modify the elements stored in the vector. The pointer is also useful if you need to pass a QVector to a function that accepts a plain C++ array.
If you want to find all occurrences of a particular value in a vector, use indexOf() or lastIndexOf(). The former searches forward starting from a given index position, the latter searches backward. Both return the index of the matching item if they found one; otherwise, they return -1. For example:
int i = vector.indexOf(“Harumi”); if (i != -1) cout << “First occurrence of Harumi is at position “ << i << endl;
If you simply want to check whether a vector contains a particular value, use contains(). If you want to find out how many times a particular value occurs in the vector, use count().
QVector provides these basic functions to add, move, and remove items: insert(), replace(), remove(), prepend(), append(). With the exception of append() and replace(), these functions can be slow (linear time) for large vectors, because they require moving many items in the vector by one position in memory. If you want a container class that provides fast insertion/removal in the middle, use QList or QLinkedList instead.
Unlike plain C++ arrays, QVectors can be resized at any time by calling resize(). If the new size is larger than the old size, QVector might need to reallocate the whole vector. QVector tries to reduce the number of reallocations by preallocating up to twice as much memory as the actual data needs.
If you know in advance approximately how many items the QVector will contain, you can call reserve(), asking QVector to preallocate a certain amount of memory. You can also call capacity() to find out how much memory QVector actually allocated.
Note that using non-const operators and functions can cause QVector to do a deep copy of the data. This is due to implicit sharing.
QVector's value type must be an assignable data type. This covers most data types that are commonly used, but the compiler won't let you, for example, store a QWidget as a value; instead, store a QWidget *. A few functions have additional requirements; for example, indexOf() and lastIndexOf() expect the value type to support operator==()
. These requirements are documented on a per-function basis.
Like the other container classes, QVector provides Java-style iterators (QVectorIterator and QMutableVectorIterator) and STL-style iterators (QVector::const_iterator and QVector::iterator). In practice, these are rarely used, because you can use indexes into the QVector.
In addition to QVector, Qt also provides QVarLengthArray, a very low-level class with little functionality that is optimized for speed.
QVector does not support inserting, prepending, appending or replacing with references to its own values. Doing so will cause your application to abort with an error message.
More Information on Using Qt Containers
For a detailed discussion comparing Qt containers with each other and with STL containers, see Understand the Qt Containers.
Implementations§
Source§impl QVectorOfQPointF
impl QVectorOfQPointF
Sourcepub unsafe fn add_assign_q_vector_of_q_point_f(
&self,
l: impl CastInto<Ref<QVectorOfQPointF>>,
) -> Ref<QVectorOfQPointF>
pub unsafe fn add_assign_q_vector_of_q_point_f( &self, l: impl CastInto<Ref<QVectorOfQPointF>>, ) -> Ref<QVectorOfQPointF>
Appends the items of the other vector to this vector and returns a reference to this vector.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::operator+=(const QVector<QPointF>& l)
.
Sourcepub unsafe fn add_assign_q_point_f(
&self,
t: impl CastInto<Ref<QPointF>>,
) -> Ref<QVectorOfQPointF>
pub unsafe fn add_assign_q_point_f( &self, t: impl CastInto<Ref<QPointF>>, ) -> Ref<QVectorOfQPointF>
This is an overloaded function.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::operator+=(const QPointF& t)
.
Sourcepub unsafe fn append_q_point_f(&self, t: impl CastInto<Ref<QPointF>>)
pub unsafe fn append_q_point_f(&self, t: impl CastInto<Ref<QPointF>>)
Inserts value at the end of the vector.
Calls C++ function: void QVector<QPointF>::append(const QPointF& t)
.
Inserts value at the end of the vector.
Example:
QVector<QString> vector; vector.append(“one”); vector.append(“two”); QString three = “three”; vector.append(three); // vector: [“one”, “two”, “three”] // three: “three”
This is the same as calling resize(size() + 1) and assigning value to the new last element in the vector.
This operation is relatively fast, because QVector typically allocates more memory than necessary, so it can grow without reallocating the entire vector each time.
See also operator<<(), prepend(), and insert().
Sourcepub unsafe fn append_q_vector_of_q_point_f(
&self,
l: impl CastInto<Ref<QVectorOfQPointF>>,
)
pub unsafe fn append_q_vector_of_q_point_f( &self, l: impl CastInto<Ref<QVectorOfQPointF>>, )
This is an overloaded function.
Calls C++ function: void QVector<QPointF>::append(const QVector<QPointF>& l)
.
This is an overloaded function.
Appends the items of the value vector to this vector.
This function was introduced in Qt 5.5.
See also operator<<() and operator+=().
Sourcepub unsafe fn at(&self, i: c_int) -> Ref<QPointF>
pub unsafe fn at(&self, i: c_int) -> Ref<QPointF>
Returns the item at index position i in the vector.
Calls C++ function: const QPointF& QVector<QPointF>::at(int i) const
.
Returns the item at index position i in the vector.
i must be a valid index position in the vector (i.e., 0 <= i < size()).
See also value() and operator[]().
Sourcepub unsafe fn back_mut(&self) -> Ref<QPointF>
pub unsafe fn back_mut(&self) -> Ref<QPointF>
Sourcepub unsafe fn back(&self) -> Ref<QPointF>
pub unsafe fn back(&self) -> Ref<QPointF>
This is an overloaded function.
Calls C++ function: const QPointF& QVector<QPointF>::back() const
.
This is an overloaded function.
Sourcepub unsafe fn capacity(&self) -> c_int
pub unsafe fn capacity(&self) -> c_int
Returns the maximum number of items that can be stored in the vector without forcing a reallocation.
Calls C++ function: int QVector<QPointF>::capacity() const
.
Returns the maximum number of items that can be stored in the vector without forcing a reallocation.
The sole purpose of this function is to provide a means of fine tuning QVector's memory usage. In general, you will rarely ever need to call this function. If you want to know how many items are in the vector, call size().
Sourcepub unsafe fn clear(&self)
pub unsafe fn clear(&self)
Removes all the elements from the vector.
Calls C++ function: void QVector<QPointF>::clear()
.
Removes all the elements from the vector.
Note: Until Qt 5.6, this also released the memory used by the vector. From Qt 5.7, the capacity is preserved. To shed all capacity, swap with a default-constructed vector:
QVector<T> v ...; QVector<T>().swap(v); Q_ASSERT(v.capacity() == 0);
or call squeeze().
See also squeeze().
Sourcepub unsafe fn const_data(&self) -> Ptr<QPointF>
pub unsafe fn const_data(&self) -> Ptr<QPointF>
Returns a const pointer to the data stored in the vector. The pointer can be used to access the items in the vector. The pointer remains valid as long as the vector isn't reallocated.
Calls C++ function: const QPointF* QVector<QPointF>::constData() const
.
Returns a const pointer to the data stored in the vector. The pointer can be used to access the items in the vector. The pointer remains valid as long as the vector isn’t reallocated.
This function is mostly useful to pass a vector to a function that accepts a plain C++ array.
See also data() and operator[]().
Sourcepub unsafe fn const_first(&self) -> Ref<QPointF>
pub unsafe fn const_first(&self) -> Ref<QPointF>
Returns a const reference to the first item in the vector. This function assumes that the vector isn't empty.
Calls C++ function: const QPointF& QVector<QPointF>::constFirst() const
.
Sourcepub unsafe fn const_last(&self) -> Ref<QPointF>
pub unsafe fn const_last(&self) -> Ref<QPointF>
Returns a const reference to the last item in the vector. This function assumes that the vector isn't empty.
Calls C++ function: const QPointF& QVector<QPointF>::constLast() const
.
Returns a const reference to the last item in the vector. This function assumes that the vector isn’t empty.
This function was introduced in Qt 5.6.
See also constFirst(), isEmpty(), and last().
Sourcepub unsafe fn contains(&self, t: impl CastInto<Ref<QPointF>>) -> bool
pub unsafe fn contains(&self, t: impl CastInto<Ref<QPointF>>) -> bool
Returns true
if the vector contains an occurrence of value; otherwise returns false
.
Calls C++ function: bool QVector<QPointF>::contains(const QPointF& t) const
.
Sourcepub unsafe fn copy_from(
&self,
v: impl CastInto<Ref<QVectorOfQPointF>>,
) -> Ref<QVectorOfQPointF>
pub unsafe fn copy_from( &self, v: impl CastInto<Ref<QVectorOfQPointF>>, ) -> Ref<QVectorOfQPointF>
Assigns other to this vector and returns a reference to this vector.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::operator=(const QVector<QPointF>& v)
.
Assigns other to this vector and returns a reference to this vector.
Sourcepub unsafe fn count_1a(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
pub unsafe fn count_1a(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
Returns the number of occurrences of value in the vector.
Calls C++ function: int QVector<QPointF>::count(const QPointF& t) const
.
Sourcepub unsafe fn count_0a(&self) -> c_int
pub unsafe fn count_0a(&self) -> c_int
This is an overloaded function.
Calls C++ function: int QVector<QPointF>::count() const
.
This is an overloaded function.
Same as size().
Sourcepub unsafe fn data_mut(&self) -> Ptr<QPointF>
pub unsafe fn data_mut(&self) -> Ptr<QPointF>
Returns a pointer to the data stored in the vector. The pointer can be used to access and modify the items in the vector.
Calls C++ function: QPointF* QVector<QPointF>::data()
.
Returns a pointer to the data stored in the vector. The pointer can be used to access and modify the items in the vector.
Example:
QVector<int> vector(10); int data = vector.data(); for (int i = 0; i < 10; ++i) data[i] = 2 i;
The pointer remains valid as long as the vector isn't reallocated.
This function is mostly useful to pass a vector to a function that accepts a plain C++ array.
See also constData() and operator[]().
Sourcepub unsafe fn data(&self) -> Ptr<QPointF>
pub unsafe fn data(&self) -> Ptr<QPointF>
This is an overloaded function.
Calls C++ function: const QPointF* QVector<QPointF>::data() const
.
This is an overloaded function.
Sourcepub unsafe fn empty(&self) -> bool
pub unsafe fn empty(&self) -> bool
This function is provided for STL compatibility. It is equivalent to isEmpty(), returning true
if the vector is empty; otherwise returns false
.
Calls C++ function: bool QVector<QPointF>::empty() const
.
This function is provided for STL compatibility. It is equivalent to isEmpty(), returning true
if the vector is empty; otherwise returns false
.
Sourcepub unsafe fn ends_with(&self, t: impl CastInto<Ref<QPointF>>) -> bool
pub unsafe fn ends_with(&self, t: impl CastInto<Ref<QPointF>>) -> bool
Returns true
if this vector is not empty and its last item is equal to value; otherwise returns false
.
Calls C++ function: bool QVector<QPointF>::endsWith(const QPointF& t) const
.
Sourcepub unsafe fn fill_2a(
&self,
t: impl CastInto<Ref<QPointF>>,
size: c_int,
) -> Ref<QVectorOfQPointF>
pub unsafe fn fill_2a( &self, t: impl CastInto<Ref<QPointF>>, size: c_int, ) -> Ref<QVectorOfQPointF>
Assigns value to all items in the vector. If size is different from -1 (the default), the vector is resized to size size beforehand.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::fill(const QPointF& t, int size = …)
.
Assigns value to all items in the vector. If size is different from -1 (the default), the vector is resized to size size beforehand.
Example:
QVector<QString> vector(3); vector.fill(“Yes”); // vector: [“Yes”, “Yes”, “Yes”]
vector.fill(“oh”, 5); // vector: [“oh”, “oh”, “oh”, “oh”, “oh”]
See also resize().
Sourcepub unsafe fn fill_1a(
&self,
t: impl CastInto<Ref<QPointF>>,
) -> Ref<QVectorOfQPointF>
pub unsafe fn fill_1a( &self, t: impl CastInto<Ref<QPointF>>, ) -> Ref<QVectorOfQPointF>
Assigns value to all items in the vector. If size is different from -1 (the default), the vector is resized to size size beforehand.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::fill(const QPointF& t)
.
Assigns value to all items in the vector. If size is different from -1 (the default), the vector is resized to size size beforehand.
Example:
QVector<QString> vector(3); vector.fill(“Yes”); // vector: [“Yes”, “Yes”, “Yes”]
vector.fill(“oh”, 5); // vector: [“oh”, “oh”, “oh”, “oh”, “oh”]
See also resize().
Sourcepub unsafe fn first_mut(&self) -> Ref<QPointF>
pub unsafe fn first_mut(&self) -> Ref<QPointF>
Returns a reference to the first item in the vector. This function assumes that the vector isn't empty.
Calls C++ function: QPointF& QVector<QPointF>::first()
.
Returns a reference to the first item in the vector. This function assumes that the vector isn’t empty.
See also last(), isEmpty(), and constFirst().
Sourcepub unsafe fn first(&self) -> Ref<QPointF>
pub unsafe fn first(&self) -> Ref<QPointF>
This is an overloaded function.
Calls C++ function: const QPointF& QVector<QPointF>::first() const
.
This is an overloaded function.
Sourcepub unsafe fn front_mut(&self) -> Ref<QPointF>
pub unsafe fn front_mut(&self) -> Ref<QPointF>
Sourcepub unsafe fn front(&self) -> Ref<QPointF>
pub unsafe fn front(&self) -> Ref<QPointF>
This is an overloaded function.
Calls C++ function: const QPointF& QVector<QPointF>::front() const
.
This is an overloaded function.
Sourcepub unsafe fn index_mut(&self, i: c_int) -> Ref<QPointF>
pub unsafe fn index_mut(&self, i: c_int) -> Ref<QPointF>
Returns the item at index position i as a modifiable reference.
Calls C++ function: QPointF& QVector<QPointF>::operator[](int i)
.
Sourcepub unsafe fn index(&self, i: c_int) -> Ref<QPointF>
pub unsafe fn index(&self, i: c_int) -> Ref<QPointF>
This is an overloaded function.
Calls C++ function: const QPointF& QVector<QPointF>::operator[](int i) const
.
This is an overloaded function.
Same as at(i).
Sourcepub unsafe fn index_of_2a(
&self,
t: impl CastInto<Ref<QPointF>>,
from: c_int,
) -> c_int
pub unsafe fn index_of_2a( &self, t: impl CastInto<Ref<QPointF>>, from: c_int, ) -> c_int
Returns the index position of the first occurrence of value in the vector, searching forward from index position from. Returns -1 if no item matched.
Calls C++ function: int QVector<QPointF>::indexOf(const QPointF& t, int from = …) const
.
Returns the index position of the first occurrence of value in the vector, searching forward from index position from. Returns -1 if no item matched.
Example:
QVector<QString> vector; vector << “A” << “B” << “C” << “B” << “A”; vector.indexOf(“B”); // returns 1 vector.indexOf(“B”, 1); // returns 1 vector.indexOf(“B”, 2); // returns 3 vector.indexOf(“X”); // returns -1
This function requires the value type to have an implementation of operator==()
.
See also lastIndexOf() and contains().
Sourcepub unsafe fn index_of_1a(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
pub unsafe fn index_of_1a(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
Returns the index position of the first occurrence of value in the vector, searching forward from index position from. Returns -1 if no item matched.
Calls C++ function: int QVector<QPointF>::indexOf(const QPointF& t) const
.
Returns the index position of the first occurrence of value in the vector, searching forward from index position from. Returns -1 if no item matched.
Example:
QVector<QString> vector; vector << “A” << “B” << “C” << “B” << “A”; vector.indexOf(“B”); // returns 1 vector.indexOf(“B”, 1); // returns 1 vector.indexOf(“B”, 2); // returns 3 vector.indexOf(“X”); // returns -1
This function requires the value type to have an implementation of operator==()
.
See also lastIndexOf() and contains().
Sourcepub unsafe fn insert_2a(&self, i: c_int, t: impl CastInto<Ref<QPointF>>)
pub unsafe fn insert_2a(&self, i: c_int, t: impl CastInto<Ref<QPointF>>)
Inserts value at index position i in the vector. If i is 0, the value is prepended to the vector. If i is size(), the value is appended to the vector.
Calls C++ function: void QVector<QPointF>::insert(int i, const QPointF& t)
.
Inserts value at index position i in the vector. If i is 0, the value is prepended to the vector. If i is size(), the value is appended to the vector.
Example:
QVector<QString> vector; vector << “alpha” << “beta” << “delta”; vector.insert(2, “gamma”); // vector: [“alpha”, “beta”, “gamma”, “delta”]
For large vectors, this operation can be slow (linear time), because it requires moving all the items at indexes i and above by one position further in memory. If you want a container class that provides a fast insert() function, use QLinkedList instead.
Sourcepub unsafe fn insert_3a(
&self,
i: c_int,
n: c_int,
t: impl CastInto<Ref<QPointF>>,
)
pub unsafe fn insert_3a( &self, i: c_int, n: c_int, t: impl CastInto<Ref<QPointF>>, )
This is an overloaded function.
Calls C++ function: void QVector<QPointF>::insert(int i, int n, const QPointF& t)
.
This is an overloaded function.
Inserts count copies of value at index position i in the vector.
Example:
QVector<double> vector; vector << 2.718 << 1.442 << 0.4342; vector.insert(1, 3, 9.9); // vector: [2.718, 9.9, 9.9, 9.9, 1.442, 0.4342]
Sourcepub unsafe fn is_detached(&self) -> bool
pub unsafe fn is_detached(&self) -> bool
Calls C++ function: bool QVector<QPointF>::isDetached() const
.
Sourcepub unsafe fn is_empty(&self) -> bool
pub unsafe fn is_empty(&self) -> bool
Returns true
if the vector has size 0; otherwise returns false
.
Calls C++ function: bool QVector<QPointF>::isEmpty() const
.
Calls C++ function: bool QVector<QPointF>::isSharedWith(const QVector<QPointF>& other) const
.
Sourcepub unsafe fn last_mut(&self) -> Ref<QPointF>
pub unsafe fn last_mut(&self) -> Ref<QPointF>
Returns a reference to the last item in the vector. This function assumes that the vector isn't empty.
Calls C++ function: QPointF& QVector<QPointF>::last()
.
Sourcepub unsafe fn last(&self) -> Ref<QPointF>
pub unsafe fn last(&self) -> Ref<QPointF>
This is an overloaded function.
Calls C++ function: const QPointF& QVector<QPointF>::last() const
.
This is an overloaded function.
Sourcepub unsafe fn last_index_of_2a(
&self,
t: impl CastInto<Ref<QPointF>>,
from: c_int,
) -> c_int
pub unsafe fn last_index_of_2a( &self, t: impl CastInto<Ref<QPointF>>, from: c_int, ) -> c_int
Returns the index position of the last occurrence of the value value in the vector, searching backward from index position from. If from is -1 (the default), the search starts at the last item. Returns -1 if no item matched.
Calls C++ function: int QVector<QPointF>::lastIndexOf(const QPointF& t, int from = …) const
.
Returns the index position of the last occurrence of the value value in the vector, searching backward from index position from. If from is -1 (the default), the search starts at the last item. Returns -1 if no item matched.
Example:
QList<QString> vector; vector << “A” << “B” << “C” << “B” << “A”; vector.lastIndexOf(“B”); // returns 3 vector.lastIndexOf(“B”, 3); // returns 3 vector.lastIndexOf(“B”, 2); // returns 1 vector.lastIndexOf(“X”); // returns -1
This function requires the value type to have an implementation of operator==()
.
See also indexOf().
Sourcepub unsafe fn last_index_of_1a(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
pub unsafe fn last_index_of_1a(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
Returns the index position of the last occurrence of the value value in the vector, searching backward from index position from. If from is -1 (the default), the search starts at the last item. Returns -1 if no item matched.
Calls C++ function: int QVector<QPointF>::lastIndexOf(const QPointF& t) const
.
Returns the index position of the last occurrence of the value value in the vector, searching backward from index position from. If from is -1 (the default), the search starts at the last item. Returns -1 if no item matched.
Example:
QList<QString> vector; vector << “A” << “B” << “C” << “B” << “A”; vector.lastIndexOf(“B”); // returns 3 vector.lastIndexOf(“B”, 3); // returns 3 vector.lastIndexOf(“B”, 2); // returns 1 vector.lastIndexOf(“X”); // returns -1
This function requires the value type to have an implementation of operator==()
.
See also indexOf().
Sourcepub unsafe fn length(&self) -> c_int
pub unsafe fn length(&self) -> c_int
Calls C++ function: int QVector<QPointF>::length() const
.
Sourcepub unsafe fn mid_2a(&self, pos: c_int, len: c_int) -> CppBox<QVectorOfQPointF>
pub unsafe fn mid_2a(&self, pos: c_int, len: c_int) -> CppBox<QVectorOfQPointF>
Returns a sub-vector which contains elements from this vector, starting at position pos. If length is -1 (the default), all elements after pos are included; otherwise length elements (or all remaining elements if there are less than length elements) are included.
Calls C++ function: QVector<QPointF> QVector<QPointF>::mid(int pos, int len = …) const
.
Returns a sub-vector which contains elements from this vector, starting at position pos. If length is -1 (the default), all elements after pos are included; otherwise length elements (or all remaining elements if there are less than length elements) are included.
Sourcepub unsafe fn mid_1a(&self, pos: c_int) -> CppBox<QVectorOfQPointF>
pub unsafe fn mid_1a(&self, pos: c_int) -> CppBox<QVectorOfQPointF>
Returns a sub-vector which contains elements from this vector, starting at position pos. If length is -1 (the default), all elements after pos are included; otherwise length elements (or all remaining elements if there are less than length elements) are included.
Calls C++ function: QVector<QPointF> QVector<QPointF>::mid(int pos) const
.
Returns a sub-vector which contains elements from this vector, starting at position pos. If length is -1 (the default), all elements after pos are included; otherwise length elements (or all remaining elements if there are less than length elements) are included.
Sourcepub unsafe fn move_(&self, from: c_int, to: c_int)
pub unsafe fn move_(&self, from: c_int, to: c_int)
Moves the item at index position from to index position to.
Calls C++ function: void QVector<QPointF>::move(int from, int to)
.
Moves the item at index position from to index position to.
Provided for compatibility with QList.
This function was introduced in Qt 5.6.
See also QList::move().
Sourcepub unsafe fn new_0a() -> CppBox<QVectorOfQPointF>
pub unsafe fn new_0a() -> CppBox<QVectorOfQPointF>
Constructs an empty vector.
Calls C++ function: [constructor] void QVector<QPointF>::QVector()
.
Constructs an empty vector.
See also resize().
Sourcepub unsafe fn new_1a(size: c_int) -> CppBox<QVectorOfQPointF>
pub unsafe fn new_1a(size: c_int) -> CppBox<QVectorOfQPointF>
Constructs a vector with an initial size of size elements.
Calls C++ function: [constructor] void QVector<QPointF>::QVector(int size)
.
Constructs a vector with an initial size of size elements.
The elements are initialized with a default-constructed value.
See also resize().
Sourcepub unsafe fn new_2a(
size: c_int,
t: impl CastInto<Ref<QPointF>>,
) -> CppBox<QVectorOfQPointF>
pub unsafe fn new_2a( size: c_int, t: impl CastInto<Ref<QPointF>>, ) -> CppBox<QVectorOfQPointF>
Constructs a vector with an initial size of size elements. Each element is initialized with value.
Calls C++ function: [constructor] void QVector<QPointF>::QVector(int size, const QPointF& t)
.
Sourcepub unsafe fn new_copy(
v: impl CastInto<Ref<QVectorOfQPointF>>,
) -> CppBox<QVectorOfQPointF>
pub unsafe fn new_copy( v: impl CastInto<Ref<QVectorOfQPointF>>, ) -> CppBox<QVectorOfQPointF>
Constructs a copy of other.
Calls C++ function: [constructor] void QVector<QPointF>::QVector(const QVector<QPointF>& v)
.
Constructs a copy of other.
This operation takes constant time, because QVector is implicitly shared. This makes returning a QVector from a function very fast. If a shared instance is modified, it will be copied (copy-on-write), and that takes linear time.
See also operator=().
Sourcepub unsafe fn pop_back(&self)
pub unsafe fn pop_back(&self)
This function is provided for STL compatibility. It is equivalent to removeLast().
Calls C++ function: void QVector<QPointF>::pop_back()
.
This function is provided for STL compatibility. It is equivalent to removeLast().
Sourcepub unsafe fn pop_front(&self)
pub unsafe fn pop_front(&self)
This function is provided for STL compatibility. It is equivalent to removeFirst().
Calls C++ function: void QVector<QPointF>::pop_front()
.
This function is provided for STL compatibility. It is equivalent to removeFirst().
Sourcepub unsafe fn prepend(&self, t: impl CastInto<Ref<QPointF>>)
pub unsafe fn prepend(&self, t: impl CastInto<Ref<QPointF>>)
Inserts value at the beginning of the vector.
Calls C++ function: void QVector<QPointF>::prepend(const QPointF& t)
.
Inserts value at the beginning of the vector.
Example:
QVector<QString> vector; vector.prepend(“one”); vector.prepend(“two”); vector.prepend(“three”); // vector: [“three”, “two”, “one”]
This is the same as vector.insert(0, value).
For large vectors, this operation can be slow (linear time), because it requires moving all the items in the vector by one position further in memory. If you want a container class that provides a fast prepend() function, use QList or QLinkedList instead.
Sourcepub unsafe fn push_back(&self, t: impl CastInto<Ref<QPointF>>)
pub unsafe fn push_back(&self, t: impl CastInto<Ref<QPointF>>)
This function is provided for STL compatibility. It is equivalent to append(value).
Calls C++ function: void QVector<QPointF>::push_back(const QPointF& t)
.
This function is provided for STL compatibility. It is equivalent to append(value).
Sourcepub unsafe fn push_front(&self, t: impl CastInto<Ref<QPointF>>)
pub unsafe fn push_front(&self, t: impl CastInto<Ref<QPointF>>)
This function is provided for STL compatibility. It is equivalent to prepend(value).
Calls C++ function: void QVector<QPointF>::push_front(const QPointF& t)
.
This function is provided for STL compatibility. It is equivalent to prepend(value).
Sourcepub unsafe fn remove_1a(&self, i: c_int)
pub unsafe fn remove_1a(&self, i: c_int)
This is an overloaded function.
Calls C++ function: void QVector<QPointF>::remove(int i)
.
Sourcepub unsafe fn remove_2a(&self, i: c_int, n: c_int)
pub unsafe fn remove_2a(&self, i: c_int, n: c_int)
This is an overloaded function.
Calls C++ function: void QVector<QPointF>::remove(int i, int n)
.
Sourcepub unsafe fn remove_all(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
pub unsafe fn remove_all(&self, t: impl CastInto<Ref<QPointF>>) -> c_int
Removes all elements that compare equal to t from the vector. Returns the number of elements removed, if any.
Calls C++ function: int QVector<QPointF>::removeAll(const QPointF& t)
.
Removes all elements that compare equal to t from the vector. Returns the number of elements removed, if any.
Provided for compatibility with QList.
This function was introduced in Qt 5.4.
See also removeOne() and QList::removeAll().
Sourcepub unsafe fn remove_at(&self, i: c_int)
pub unsafe fn remove_at(&self, i: c_int)
Removes the element at index position i. Equivalent to
Calls C++ function: void QVector<QPointF>::removeAt(int i)
.
Removes the element at index position i. Equivalent to
remove(i);
Provided for compatibility with QList.
This function was introduced in Qt 5.2.
See also remove() and QList::removeAt().
Sourcepub unsafe fn remove_first(&self)
pub unsafe fn remove_first(&self)
Removes the first item in the vector. Calling this function is equivalent to calling remove(0). The vector must not be empty. If the vector can be empty, call isEmpty() before calling this function.
Calls C++ function: void QVector<QPointF>::removeFirst()
.
Sourcepub unsafe fn remove_last(&self)
pub unsafe fn remove_last(&self)
Removes the last item in the vector. Calling this function is equivalent to calling remove(size() - 1). The vector must not be empty. If the vector can be empty, call isEmpty() before calling this function.
Calls C++ function: void QVector<QPointF>::removeLast()
.
Removes the last item in the vector. Calling this function is equivalent to calling remove(size() - 1). The vector must not be empty. If the vector can be empty, call isEmpty() before calling this function.
This function was introduced in Qt 5.1.
See also remove(), takeLast(), removeFirst(), and isEmpty().
Sourcepub unsafe fn remove_one(&self, t: impl CastInto<Ref<QPointF>>) -> bool
pub unsafe fn remove_one(&self, t: impl CastInto<Ref<QPointF>>) -> bool
Removes the first element that compares equal to t from the vector. Returns whether an element was, in fact, removed.
Calls C++ function: bool QVector<QPointF>::removeOne(const QPointF& t)
.
Removes the first element that compares equal to t from the vector. Returns whether an element was, in fact, removed.
Provided for compatibility with QList.
This function was introduced in Qt 5.4.
See also removeAll() and QList::removeOne().
Sourcepub unsafe fn replace(&self, i: c_int, t: impl CastInto<Ref<QPointF>>)
pub unsafe fn replace(&self, i: c_int, t: impl CastInto<Ref<QPointF>>)
Replaces the item at index position i with value.
Calls C++ function: void QVector<QPointF>::replace(int i, const QPointF& t)
.
Replaces the item at index position i with value.
i must be a valid index position in the vector (i.e., 0 <= i < size()).
See also operator[]() and remove().
Sourcepub unsafe fn reserve(&self, size: c_int)
pub unsafe fn reserve(&self, size: c_int)
Attempts to allocate memory for at least size elements. If you know in advance how large the vector will be, you should call this function to prevent reallocations and memory fragmentation.
Calls C++ function: void QVector<QPointF>::reserve(int size)
.
Attempts to allocate memory for at least size elements. If you know in advance how large the vector will be, you should call this function to prevent reallocations and memory fragmentation.
If size is an underestimate, the worst that will happen is that the QVector will be a bit slower. If size is an overestimate, you may have used more memory than the normal QVector growth strategy would have allocated—or you may have used less.
An alternative to reserve() is calling resize(). Whether or not that is faster than reserve() depends on the element type, because resize() default-constructs all elements, and requires assignment to existing entries rather than calling append(), which copy- or move-constructs. For simple types, like int
or double
, resize() is typically faster, but for anything more complex, you should prefer reserve().
Warning: If the size passed to resize() was underestimated, you run out of allocated space and into undefined behavior. This problem does not exist with reserve(), because it treats the size as just a hint.
Sourcepub unsafe fn resize(&self, size: c_int)
pub unsafe fn resize(&self, size: c_int)
Sets the size of the vector to size. If size is greater than the current size, elements are added to the end; the new elements are initialized with a default-constructed value. If size is less than the current size, elements are removed from the end.
Calls C++ function: void QVector<QPointF>::resize(int size)
.
Sets the size of the vector to size. If size is greater than the current size, elements are added to the end; the new elements are initialized with a default-constructed value. If size is less than the current size, elements are removed from the end.
Since Qt 5.6, resize() doesn't shrink the capacity anymore. To shed excess capacity, use squeeze().
See also size().
Sourcepub unsafe fn set_sharable(&self, sharable: bool)
pub unsafe fn set_sharable(&self, sharable: bool)
Calls C++ function: void QVector<QPointF>::setSharable(bool sharable)
.
Sourcepub unsafe fn shrink_to_fit(&self)
Available on cpp_lib_version="5.11.3"
or cpp_lib_version="5.12.2"
or cpp_lib_version="5.13.0"
or cpp_lib_version="5.14.0"
only.
pub unsafe fn shrink_to_fit(&self)
cpp_lib_version="5.11.3"
or cpp_lib_version="5.12.2"
or cpp_lib_version="5.13.0"
or cpp_lib_version="5.14.0"
only.Sourcepub unsafe fn size(&self) -> c_int
pub unsafe fn size(&self) -> c_int
Returns the number of items in the vector.
Calls C++ function: int QVector<QPointF>::size() const
.
Sourcepub unsafe fn squeeze(&self)
pub unsafe fn squeeze(&self)
Releases any memory not required to store the items.
Calls C++ function: void QVector<QPointF>::squeeze()
.
Sourcepub unsafe fn starts_with(&self, t: impl CastInto<Ref<QPointF>>) -> bool
pub unsafe fn starts_with(&self, t: impl CastInto<Ref<QPointF>>) -> bool
Returns true
if this vector is not empty and its first item is equal to value; otherwise returns false
.
Calls C++ function: bool QVector<QPointF>::startsWith(const QPointF& t) const
.
Sourcepub unsafe fn swap(&self, other: impl CastInto<Ref<QVectorOfQPointF>>)
pub unsafe fn swap(&self, other: impl CastInto<Ref<QVectorOfQPointF>>)
Swaps vector other with this vector. This operation is very fast and never fails.
Calls C++ function: void QVector<QPointF>::swap(QVector<QPointF>& other)
.
Swaps vector other with this vector. This operation is very fast and never fails.
This function was introduced in Qt 4.8.
Sourcepub unsafe fn swap_items_at(&self, i: c_int, j: c_int)
Available on cpp_lib_version="5.14.0"
only.
pub unsafe fn swap_items_at(&self, i: c_int, j: c_int)
cpp_lib_version="5.14.0"
only.Sourcepub unsafe fn take_at(&self, i: c_int) -> CppBox<QPointF>
pub unsafe fn take_at(&self, i: c_int) -> CppBox<QPointF>
Removes the element at index position i and returns it.
Calls C++ function: QPointF QVector<QPointF>::takeAt(int i)
.
Removes the element at index position i and returns it.
Equivalent to
T t = at(i); remove(i); return t;
Provided for compatibility with QList.
This function was introduced in Qt 5.2.
See also takeFirst(), takeLast(), and QList::takeAt().
Sourcepub unsafe fn take_first(&self) -> CppBox<QPointF>
pub unsafe fn take_first(&self) -> CppBox<QPointF>
Removes the first item in the vector and returns it. This function assumes the vector is not empty. To avoid failure, call isEmpty() before calling this function.
Calls C++ function: QPointF QVector<QPointF>::takeFirst()
.
Removes the first item in the vector and returns it. This function assumes the vector is not empty. To avoid failure, call isEmpty() before calling this function.
This function was introduced in Qt 5.1.
See also takeLast() and removeFirst().
Sourcepub unsafe fn take_last(&self) -> CppBox<QPointF>
pub unsafe fn take_last(&self) -> CppBox<QPointF>
Removes the last item in the list and returns it. This function assumes the vector is not empty. To avoid failure, call isEmpty() before calling this function.
Calls C++ function: QPointF QVector<QPointF>::takeLast()
.
Removes the last item in the list and returns it. This function assumes the vector is not empty. To avoid failure, call isEmpty() before calling this function.
If you don't use the return value, removeLast() is more efficient.
This function was introduced in Qt 5.1.
See also takeFirst() and removeLast().
Sourcepub unsafe fn value_1a(&self, i: c_int) -> CppBox<QPointF>
pub unsafe fn value_1a(&self, i: c_int) -> CppBox<QPointF>
Returns the value at index position i in the vector.
Calls C++ function: QPointF QVector<QPointF>::value(int i) const
.
Returns the value at index position i in the vector.
If the index i is out of bounds, the function returns a default-constructed value. If you are certain that i is within bounds, you can use at() instead, which is slightly faster.
See also at() and operator[]().
Sourcepub unsafe fn value_2a(
&self,
i: c_int,
default_value: impl CastInto<Ref<QPointF>>,
) -> CppBox<QPointF>
pub unsafe fn value_2a( &self, i: c_int, default_value: impl CastInto<Ref<QPointF>>, ) -> CppBox<QPointF>
This is an overloaded function.
Calls C++ function: QPointF QVector<QPointF>::value(int i, const QPointF& defaultValue) const
.
This is an overloaded function.
If the index i is out of bounds, the function returns defaultValue.
Trait Implementations§
Source§impl Add<Ref<QVectorOfQPointF>> for &QVectorOfQPointF
impl Add<Ref<QVectorOfQPointF>> for &QVectorOfQPointF
Source§fn add(self, l: Ref<QVectorOfQPointF>) -> CppBox<QVectorOfQPointF>
fn add(self, l: Ref<QVectorOfQPointF>) -> CppBox<QVectorOfQPointF>
Returns a vector that contains all the items in this vector followed by all the items in the other vector.
Calls C++ function: QVector<QPointF> QVector<QPointF>::operator+(const QVector<QPointF>& l) const
.
Returns a vector that contains all the items in this vector followed by all the items in the other vector.
See also operator+=().
Source§type Output = CppBox<QVectorOfQPointF>
type Output = CppBox<QVectorOfQPointF>
+
operator.Source§impl CppDeletable for QVectorOfQPointF
impl CppDeletable for QVectorOfQPointF
Source§impl Data for QVectorOfQPointF
impl Data for QVectorOfQPointF
Source§impl DataMut for QVectorOfQPointF
impl DataMut for QVectorOfQPointF
Source§unsafe fn data_mut(&self) -> Ptr<QPointF>
unsafe fn data_mut(&self) -> Ptr<QPointF>
Returns a pointer to the data stored in the vector. The pointer can be used to access and modify the items in the vector.
Calls C++ function: QPointF* QVector<QPointF>::data()
.
Returns a pointer to the data stored in the vector. The pointer can be used to access and modify the items in the vector.
Example:
QVector<int> vector(10); int data = vector.data(); for (int i = 0; i < 10; ++i) data[i] = 2 i;
The pointer remains valid as long as the vector isn't reallocated.
This function is mostly useful to pass a vector to a function that accepts a plain C++ array.
See also constData() and operator[]().
Source§impl PartialEq<Ref<QVectorOfQPointF>> for QVectorOfQPointF
impl PartialEq<Ref<QVectorOfQPointF>> for QVectorOfQPointF
Source§fn eq(&self, v: &Ref<QVectorOfQPointF>) -> bool
fn eq(&self, v: &Ref<QVectorOfQPointF>) -> bool
Returns true
if other is equal to this vector; otherwise returns false
.
Calls C++ function: bool QVector<QPointF>::operator==(const QVector<QPointF>& v) const
.
Returns true
if other is equal to this vector; otherwise returns false
.
Two vectors are considered equal if they contain the same values in the same order.
This function requires the value type to have an implementation of operator==()
.
See also operator!=().
Source§impl Shl<Ref<QPointF>> for &QVectorOfQPointF
impl Shl<Ref<QPointF>> for &QVectorOfQPointF
Source§fn shl(self, t: Ref<QPointF>) -> Ref<QVectorOfQPointF>
fn shl(self, t: Ref<QPointF>) -> Ref<QVectorOfQPointF>
Appends value to the vector and returns a reference to this vector.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::operator<<(const QPointF& t)
.
Appends value to the vector and returns a reference to this vector.
See also append() and operator+=().
Source§type Output = Ref<QVectorOfQPointF>
type Output = Ref<QVectorOfQPointF>
<<
operator.Source§impl Shl<Ref<QVectorOfQPointF>> for &QVectorOfQPointF
impl Shl<Ref<QVectorOfQPointF>> for &QVectorOfQPointF
Source§fn shl(self, l: Ref<QVectorOfQPointF>) -> Ref<QVectorOfQPointF>
fn shl(self, l: Ref<QVectorOfQPointF>) -> Ref<QVectorOfQPointF>
Appends other to the vector and returns a reference to the vector.
Calls C++ function: QVector<QPointF>& QVector<QPointF>::operator<<(const QVector<QPointF>& l)
.
Appends other to the vector and returns a reference to the vector.
Source§type Output = Ref<QVectorOfQPointF>
type Output = Ref<QVectorOfQPointF>
<<
operator.