[#BloombergLP-bslmt-SaturatedTimeConversionImpUtil] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslmt.adoc[bslmt]::SaturatedTimeConversionImpUtil :relfileprefix: ../../ :mrdocs: Utility for saturating conversions between time representations. == Synopsis Declared in `<bslmt_saturatedtimeconversionimputil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- struct SaturatedTimeConversionImpUtil; ---- == Description This `struct` provides a namespace for utility functions that convert time values between different time representations, and "saturate" when values are outside the range of values that may be represented in the destination type (meaning that values above the maximum representable value of the result type are set to the maximum value of the result type, and values below the minimum representable value of the result type are set to the minimum value for the result type). == Type Aliases [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bslmt/SaturatedTimeConversionImpUtil/TimeSpec.adoc[`TimeSpec`] | Alias to the platform `timespec` type. |=== == Static Member Functions [cols="1,4"] |=== | Name| Description | xref:BloombergLP/bslmt/SaturatedTimeConversionImpUtil/toMillisec-029.adoc[`toMillisec`] | Convert `src` to milliseconds with saturation. | xref:BloombergLP/bslmt/SaturatedTimeConversionImpUtil/toTimeSpec.adoc[`toTimeSpec`] | Assign `src` to `*dst`, saturating to the representable range. | xref:BloombergLP/bslmt/SaturatedTimeConversionImpUtil/toTimeT.adoc[`toTimeT`] | Assign `src` to `*dst` as a `time_t`, saturating to range. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#