[#absl-operator_slash-04] = xref:absl.adoc[absl]::operator/ :relfileprefix: ../ :mrdocs: Division operators == Synopses Declared in `<absl/numeric/int128.h>` Returns the integer quotient of one duration divided by another. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int64_t xref:absl/operator_slash-05.adoc[operator/]( xref:absl/Duration.adoc[Duration] lhs, xref:absl/Duration.adoc[Duration] rhs); ---- [.small]#xref:absl/operator_slash-05.adoc[_» more..._]# Returns the quotient of `lhs` divided by `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/int128.adoc[int128] xref:absl/operator_slash-0d.adoc[operator/]( xref:absl/int128.adoc[int128] lhs, xref:absl/int128.adoc[int128] rhs); ---- [.small]#xref:absl/operator_slash-0d.adoc[_» more..._]# Returns the quotient of `lhs` divided by `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/uint128.adoc[uint128] xref:absl/operator_slash-0a.adoc[operator/]( xref:absl/uint128.adoc[uint128] lhs, xref:absl/uint128.adoc[uint128] rhs); ---- [.small]#xref:absl/operator_slash-0a.adoc[_» more..._]# Returns the quotient of a duration divided by a scalar. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> xref:absl/Duration.adoc[Duration] xref:absl/operator_slash-07.adoc[operator/]( xref:absl/Duration.adoc[Duration] lhs, T rhs); ---- [.small]#xref:absl/operator_slash-07.adoc[_» more..._]# == Return Value * The truncated integer quotient `lhs / rhs`. * The quotient `lhs / rhs`. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The numerator duration. | *rhs* | The denominator duration. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#