insert<s,pos,x>::type |
A new sequence, concept-identical to s, of
the following elements:
[begin<s>::type, pos), x,
[pos, end<s>::type); see insert. |
insert_range<s,pos,r>::type |
A new sequence, concept-identical to s, of
the following elements:
[begin<s>::type, pos),
[begin<r>::type, end<r>::type),
[pos, end<s>::type); see insert_range. |
erase<s,pos>::type |
A new sequence, concept-identical to s, of
the following elements:
[begin<s>::type, pos),
[next<pos>::type, end<s>::type); see erase. |
erase<s,pos,last>::type |
A new sequence, concept-identical to s, of
the following elements:
[begin<s>::type, pos),
[last, end<s>::type); see erase. |
clear<s>::type |
An empty sequence concept-identical to s; see
clear. |