Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
basic_static_string::insert (8 of 15 overloads)

Insert a character.

Synopsis
BOOST_STATIC_STRING_CPP14_CONSTEXPR iterator
insert(
    const_iterator pos,
    value_type ch);
Description

Inserts the character ch before the character pointed by pos.

Precondition

pos shall be vaild within [data(), data() + size()]

Exception Safety

Strong guarantee.

Remarks

All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.

Return Value

An iterator which refers to the first inserted character or pos if no characters were inserted

Parameters

Name

Description

pos

The index to insert at.

ch

The character to insert.

Exceptions

Type

Thrown On

std::length_error

size() + 1 > max_size()


PrevUpHomeNext