Creates a FixedString<16> from a string literal.

Synopsis

Declared in <folly/FixedString.h>

constexpr
FixedString<16>
operator""_fs16(
    char const* that,
    std::size_t count) noexcept(false);

Return Value

A FixedString<16> holding the literal's characters.

Parameters

Name

Description

that

A pointer to the literal's characters.

count

The number of characters in the literal.

Created with MrDocs