[#absl-operator_rshift-05] = xref:absl.adoc[absl]::operator>> :relfileprefix: ../ :mrdocs: Right shift operators == Synopses Declared in `<absl/numeric/int128.h>` Shifts `lhs` right by the given number of bits. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/int128.adoc[int128] xref:absl/operator_rshift-02d.adoc[operator>>]( xref:absl/int128.adoc[int128] lhs, int amount); ---- [.small]#xref:absl/operator_rshift-02d.adoc[_» more..._]# Shifts `lhs` right by the given number of bits. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- constexpr xref:absl/uint128.adoc[uint128] xref:absl/operator_rshift-040.adoc[operator>>]( xref:absl/uint128.adoc[uint128] lhs, int amount); ---- [.small]#xref:absl/operator_rshift-040.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-0ba.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/bernoulli_distribution.adoc[bernoulli_distribution]& x); ---- [.small]#xref:absl/operator_rshift-0ba.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename RealType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-00.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/beta_distribution.adoc[beta_distribution<RealType>]& x); ---- [.small]#xref:absl/operator_rshift-00.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename IntType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-02f.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/discrete_distribution.adoc[discrete_distribution<IntType>]& x); ---- [.small]#xref:absl/operator_rshift-02f.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename RealType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-0b4.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/exponential_distribution.adoc[exponential_distribution<RealType>]& x); ---- [.small]#xref:absl/operator_rshift-0b4.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename RealType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-06.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/gaussian_distribution.adoc[gaussian_distribution<RealType>]& x); ---- [.small]#xref:absl/operator_rshift-06.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename IntType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-0f.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/log_uniform_int_distribution.adoc[log_uniform_int_distribution<IntType>]& x); ---- [.small]#xref:absl/operator_rshift-0f.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename IntType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-048.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/poisson_distribution.adoc[poisson_distribution<IntType>]& x); ---- [.small]#xref:absl/operator_rshift-048.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename IntType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-0a.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/uniform_int_distribution.adoc[uniform_int_distribution<IntType>]& x); ---- [.small]#xref:absl/operator_rshift-0a.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename RealType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-049.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/uniform_real_distribution.adoc[uniform_real_distribution<RealType>]& x); ---- [.small]#xref:absl/operator_rshift-049.adoc[_» more..._]# Reads the distribution from an input stream. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename IntType> std::basic_istream<CharT, Traits>& xref:absl/operator_rshift-01.adoc[operator>>]( std::basic_istream<CharT, Traits>& is, xref:absl/zipf_distribution.adoc[zipf_distribution<IntType>]& x); ---- [.small]#xref:absl/operator_rshift-01.adoc[_» more..._]# == Return Value * The shifted value. * A reference to the input stream. == Parameters [cols="1,4"] |=== | Name| Description | *lhs* | The value to shift. | *amount* | The number of bit positions to shift. | *is* | The input stream to read from. | *x* | The distribution to read into. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#