[#BloombergLP-bsls-TimeInterval_DurationTraits-k_EXPLICIT_CONVERSION_ENABLED] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::xref:BloombergLP/bsls/TimeInterval_DurationTraits.adoc[TimeInterval_DurationTraits]::k_EXPLICIT_CONVERSION_ENABLED :relfileprefix: ../../../ :mrdocs: This compile time constant is `true` if `std::chrono::duration<REP, PERIOD>` objects can be explicitly converted to `TimeInterval`, and `false` otherwise. This value is intended to be used with `enable_if` to enable explicitly converting function overloads. Note that this boolean value is mutually exclusive with `k_IMPLICIT_CONVERION_ENABLED` as in they will never be both `true` for the same `REP" and `PERIOD', but they may be both `false` for floats. == Synopsis Declared in `<bsls_timeinterval.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static bool const k_EXPLICIT_CONVERSION_ENABLED = !k_IS_FLOAT && !k_IS_IMPLICIT; ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#