[#absl-ParseCivilTime-05] = xref:absl.adoc[absl]::ParseCivilTime :relfileprefix: ../ :mrdocs: Parses a civil‐time value from the specified `absl::string_view` into the passed output parameter. Returns `true` upon successful parsing. == Synopses Declared in `<absl/time/civil_time.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/ParseCivilTime-0f.adoc[ParseCivilTime]( std::string_view s, xref:absl/CivilDay.adoc[CivilDay]* c); ---- [.small]#xref:absl/ParseCivilTime-0f.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/ParseCivilTime-09.adoc[ParseCivilTime]( std::string_view s, xref:absl/CivilHour.adoc[CivilHour]* c); ---- [.small]#xref:absl/ParseCivilTime-09.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/ParseCivilTime-08.adoc[ParseCivilTime]( std::string_view s, xref:absl/CivilMinute.adoc[CivilMinute]* c); ---- [.small]#xref:absl/ParseCivilTime-08.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/ParseCivilTime-0d.adoc[ParseCivilTime]( std::string_view s, xref:absl/CivilMonth.adoc[CivilMonth]* c); ---- [.small]#xref:absl/ParseCivilTime-0d.adoc[_» more..._]# Parses a civil‐time value from the specified `absl::string_view` into the passed output parameter. Returns `true` upon successful parsing. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/ParseCivilTime-022.adoc[ParseCivilTime]( std::string_view s, xref:absl/CivilSecond.adoc[CivilSecond]* c); ---- [.small]#xref:absl/ParseCivilTime-022.adoc[_» more..._]# [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool xref:absl/ParseCivilTime-02a.adoc[ParseCivilTime]( std::string_view s, xref:absl/CivilYear.adoc[CivilYear]* c); ---- [.small]#xref:absl/ParseCivilTime-02a.adoc[_» more..._]# == Return Value `true` upon successful parsing. == Parameters [cols="1,4"] |=== | Name| Description | *s* | The string to parse. | *c* | Output parameter receiving the parsed civil‐time value. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#