[#absl-operator_lshift-07a] = xref:absl.adoc[absl]::operator<< :relfileprefix: ../ :mrdocs: Writes the distribution to an output stream. == Synopsis Declared in `<absl/random/poisson_distribution.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< typename CharT, typename Traits, typename IntType> std::basic_ostream<CharT, Traits>& operator<<( std::basic_ostream<CharT, Traits>& os, xref:absl/poisson_distribution.adoc[poisson_distribution<IntType>] const& x); ---- == Return Value A reference to the output stream. == Parameters [cols="1,4"] |=== | Name| Description | *os* | The output stream to write to. | *x* | The distribution to write. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#