[#absl-operator_star-0b60] = xref:absl.adoc[absl]::operator* :relfileprefix: ../ :mrdocs: Multiplication operators == Synopses Declared in `<absl/numeric/int128.h>` Returns the product of `lhs` and `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/int128.adoc[int128] xref:absl/operator_star-0b69.adoc[operator*]( xref:absl/int128.adoc[int128] lhs, xref:absl/int128.adoc[int128] rhs); ---- [.small]#xref:absl/operator_star-0b69.adoc[_» more..._]# Returns the product of `lhs` and `rhs`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/uint128.adoc[uint128] xref:absl/operator_star-05.adoc[operator*]( xref:absl/uint128.adoc[uint128] lhs, xref:absl/uint128.adoc[uint128] rhs); ---- [.small]#xref:absl/operator_star-05.adoc[_» more..._]# Returns the product of a duration and a scalar. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> xref:absl/Duration.adoc[Duration] xref:absl/operator_star-07.adoc[operator*]( xref:absl/Duration.adoc[Duration] lhs, T rhs); ---- [.small]#xref:absl/operator_star-07.adoc[_» more..._]# Returns the product of a scalar and a duration. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename T> xref:absl/Duration.adoc[Duration] xref:absl/operator_star-02.adoc[operator*]( T lhs, xref:absl/Duration.adoc[Duration] rhs); ---- [.small]#xref:absl/operator_star-02.adoc[_» more..._]# == Return Value The product `lhs * rhs`. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The left‐hand operand. | *rhs* | The right‐hand operand. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#