mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 15:40:19 +00:00
3f3f45580a
Each of these strings would previously rely on StringView's char const* constructor overload, which would call __builtin_strlen on the string. Since we now have operator ""sv, we can replace these with much simpler versions. This opens the door to being able to remove StringView(char const*). No functional changes.
47 lines
1.2 KiB
C++
47 lines
1.2 KiB
C++
/*
|
|
* Copyright (c) 2022, the SerenityOS developers.
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Array.h>
|
|
#include <AK/StringView.h>
|
|
|
|
namespace AK {
|
|
|
|
static constexpr Array<StringView, 7> long_day_names = {
|
|
"Sunday"sv, "Monday"sv, "Tuesday"sv, "Wednesday"sv, "Thursday"sv, "Friday"sv, "Saturday"sv
|
|
};
|
|
|
|
static constexpr Array<StringView, 7> short_day_names = {
|
|
"Sun"sv, "Mon"sv, "Tue"sv, "Wed"sv, "Thu"sv, "Fri"sv, "Sat"sv
|
|
};
|
|
|
|
static constexpr Array<StringView, 7> mini_day_names = {
|
|
"Su"sv, "Mo"sv, "Tu"sv, "We"sv, "Th"sv, "Fr"sv, "Sa"sv
|
|
};
|
|
|
|
static constexpr Array<StringView, 7> micro_day_names = {
|
|
"S"sv, "M"sv, "T"sv, "W"sv, "T"sv, "F"sv, "S"sv
|
|
};
|
|
|
|
static constexpr Array<StringView, 12> long_month_names = {
|
|
"January"sv, "February"sv, "March"sv, "April"sv, "May"sv, "June"sv,
|
|
"July"sv, "August"sv, "September"sv, "October"sv, "November"sv, "December"sv
|
|
};
|
|
|
|
static constexpr Array<StringView, 12> short_month_names = {
|
|
"Jan"sv, "Feb"sv, "Mar"sv, "Apr"sv, "May"sv, "Jun"sv,
|
|
"Jul"sv, "Aug"sv, "Sep"sv, "Oct"sv, "Nov"sv, "Dec"sv
|
|
};
|
|
|
|
}
|
|
|
|
using AK::long_day_names;
|
|
using AK::long_month_names;
|
|
using AK::micro_day_names;
|
|
using AK::mini_day_names;
|
|
using AK::short_day_names;
|
|
using AK::short_month_names;
|