Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
basic_static_string::starts_with (3 of 3 overloads)

Return whether the string begins with a character.

Synopsis
constexpr bool
starts_with(
    basic_static_string::value_type c) const noexcept;
Description

Returns true if the string begins with c, and false otherwise.

Complexity

Constant.

Parameters

Name

Description

c

The character to check for.


PrevUpHomeNext