File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -796,16 +796,16 @@ Inserts an element constructed in place into the vector at a specified position.
796796``` cpp
797797template <class ... Types>
798798iterator emplace(
799- const_iterator _ Where ,
800- Types&&... _ Args );
799+ const_iterator position ,
800+ Types&&... args );
801801```
802802
803803### Parameters
804804
805- *_Where *\
805+ *position *\
806806The position in the [vector](../standard-library/vector-class.md) where the first element is inserted.
807807
808- *_Args *\
808+ *args *\
809809Constructor arguments. The function infers which constructor overload to invoke based on the arguments provided.
810810
811811### Return Value
@@ -864,12 +864,12 @@ Adds an element constructed in place to the end of the vector.
864864
865865``` cpp
866866template <class ... Types>
867- void emplace_back(Types&&... _ Args );
867+ void emplace_back(Types&&... args );
868868```
869869
870870### Parameters
871871
872- *_Args *\
872+ *args *\
873873Constructor arguments. The function infers which constructor overload to invoke based on the arguments provided.
874874
875875### Example
You can’t perform that action at this time.
0 commit comments