MCPcopy Create free account
hub / github.com/aethersdr/AetherSDR / weekdayLongName

Function weekdayLongName

src/core/NetRecurrence.cpp:27–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

25}
26
27QString weekdayLongName(int qtDow)
28{
29 static const QStringList kNames = {"Monday", "Tuesday", "Wednesday", "Thursday",
30 "Friday", "Saturday", "Sunday"};
31 if (qtDow < 1 || qtDow > 7)
32 return {};
33 return kNames.at(qtDow - 1);
34}
35
36QString ordinalName(int ordinal)
37{

Callers 1

describeRuleFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected