[#BloombergLP-bsls-TimeInterval-isValid-07] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bsls.adoc[bsls]::xref:BloombergLP/bsls/TimeInterval.adoc[TimeInterval]::isValid :relfileprefix: ../../../ :mrdocs: `isValid` overloads == Synopses Declared in `<bsls_timeinterval.h>` Return `true` if a `TimeInterval` object can be constructed from the specified `duration`, and `false` otherwise. A time interval can be constructed from `duration` if duration's value converted to seconds can be represented with a 64‐bit signed integer. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class REP, class PERIOD> static bool xref:BloombergLP/bsls/TimeInterval/isValid-09.adoc[isValid](std::chrono::duration<REP, PERIOD> const& duration); ---- [.small]#xref:BloombergLP/bsls/TimeInterval/isValid-09.adoc[_» more..._]# Return `true` if a `TimeInterval` object can be constructed from the specified `seconds` and `nanoseconds`, and `false` otherwise. A time interval can be constructed from `seconds` and `nanoseconds` if their sum results in a time interval whose total number of seconds can be represented with a 64‐bit signed integer. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr static bool xref:BloombergLP/bsls/TimeInterval/isValid-0a.adoc[isValid]( xref:BloombergLP/bsls/Types/Int64.adoc[bsls::Types::Int64] seconds, int nanoseconds); ---- [.small]#xref:BloombergLP/bsls/TimeInterval/isValid-0a.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#