[#BloombergLP-bdlt-TimeUtil-convertToHHMM] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/TimeUtil.adoc[TimeUtil]::convertToHHMM :relfileprefix: ../../../ :mrdocs: Return the non‐negative integer representing the same time as the specified `value` that, when expressed in decimal notation, contains exactly four digits (counting leading zeros, if any): two digits for the hour and two digits for the minute. For example, `Time(3, 9, sec, ms)`, where `0 <= sec < 60` and `0 <= ms < 1000`, is converted to 309. More formally, this method returns: ` value.hour() * 100 + value.minute() ` == Synopsis Declared in `<bdlt_timeutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static int convertToHHMM(xref:BloombergLP/bdlt/Time.adoc[Time] const& value); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#