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
The template class describes an object that controls a varying length sequence of elements that has first-in first-out access. Use the container adapter `queue` to manage an underlying container as a queue.
12
12
13
-
In the description below, `GValue` is the same as *`Value`* unless the latter is a ref type, in which case it's `Value^`. Similarly, `GContainer` is the same as *`Container`* unless the latter is a ref type, in which case it's `Container^`.
13
+
In the following description, `GValue` is the same as *`Value`* unless the latter is a ref type, in which case it's `Value^`. Similarly, `GContainer` is the same as *`Container`* unless the latter is a ref type, in which case it's `Container^`.
14
14
15
15
## Syntax
16
16
@@ -162,7 +162,7 @@ reference back();
162
162
163
163
### Remarks
164
164
165
-
The member function returns a reference to the last element of the controlled sequence, which must be non-empty. You use it to access the last element, when you know one exists.
165
+
The member function returns a reference to the last element of the controlled sequence, which must be nonempty. You use it to access the last element, when you know one exists.
The property accesses the last element of the controlled sequence, which must be non-empty. You use it to read or write the last element, when you know one exists.
218
+
The property accesses the last element of the controlled sequence, which must be nonempty. You use it to read or write the last element, when you know one exists.
219
219
220
220
### Example
221
221
@@ -470,7 +470,7 @@ reference front();
470
470
471
471
### Remarks
472
472
473
-
The member function returns a reference to the first element of the controlled sequence, which must be non-empty. You use it to access the first element, when you know one exists.
473
+
The member function returns a reference to the first element of the controlled sequence, which must be nonempty. You use it to access the first element, when you know one exists.
The property accesses the first element of the controlled sequence, which must be non-empty. You use it to read or write the first element, when you know one exists.
526
+
The property accesses the first element of the controlled sequence, which must be nonempty. You use it to read or write the first element, when you know one exists.
527
527
528
528
### Example
529
529
@@ -796,7 +796,7 @@ void pop();
796
796
797
797
### Remarks
798
798
799
-
Removes the first element of the controlled sequence, which must be non-empty.
799
+
Removes the first element of the controlled sequence, which must be nonempty.
0 commit comments