[#absl-operator_mod-05] = xref:absl.adoc[absl]::operator% :relfileprefix: ../ :mrdocs: Modulus operators == Synopses Declared in `<absl/numeric/int128.h>` Returns the remainder of one duration divided by another. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:absl/Duration.adoc[Duration] xref:absl/operator_mod-02.adoc[operator%]( xref:absl/Duration.adoc[Duration] lhs, xref:absl/Duration.adoc[Duration] rhs); ---- [.small]#xref:absl/operator_mod-02.adoc[_» more..._]# Returns the remainder of `lhs` divided by `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/int128.adoc[int128] xref:absl/operator_mod-00.adoc[operator%]( xref:absl/int128.adoc[int128] lhs, xref:absl/int128.adoc[int128] rhs); ---- [.small]#xref:absl/operator_mod-00.adoc[_» more..._]# Returns the remainder of `lhs` divided by `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/uint128.adoc[uint128] xref:absl/operator_mod-0c.adoc[operator%]( xref:absl/uint128.adoc[uint128] lhs, xref:absl/uint128.adoc[uint128] rhs); ---- [.small]#xref:absl/operator_mod-0c.adoc[_» more..._]# == Return Value The remainder `lhs % rhs`. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The numerator duration. | *rhs* | The denominator duration. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#