[#absl-GetWeekday] = xref:absl.adoc[absl]::GetWeekday :relfileprefix: ../ :mrdocs: Returns the absl::Weekday for the given (realigned) civil‐time value. == Synopsis Declared in `<absl/time/civil_time.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/Weekday.adoc[Weekday] GetWeekday(xref:absl/CivilSecond.adoc[CivilSecond] cs); ---- == Description Example: absl::CivilDay a(2015, 8, 13); absl::Weekday wd = absl::GetWeekday(a); // wd == absl::Weekday::thursday == Return Value The weekday on which `cs` falls. == Parameters [cols="1,4"] |=== | Name| Description | *cs* | The civil‐time value to inspect. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#