folly::operator""_fs64

Creates a FixedString<64> from a string literal.

Synopsis

Declared in <folly/FixedString.h>

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

Return Value

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

Parameters

NameDescription
thatA pointer to the literal's characters.
countThe number of characters in the literal.