[#bsl-operator_rshift-08] = xref:bsl.adoc[bsl]::operator>> :relfileprefix: ../ :mrdocs: Right shift operators == Synopses Declared in `<bslstl_bitset.h>` Extract a whitespace‐delimited word into a string. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class CHAR_TYPE, class CHAR_TRAITS, class ALLOCATOR> std::basic_istream<CHAR_TYPE, CHAR_TRAITS>& xref:bsl/operator_rshift-02.adoc[operator>>]( std::basic_istream<CHAR_TYPE, CHAR_TRAITS>& is, xref:bsl/basic_string-0faf.adoc[basic_string<CHAR_TYPE, CHAR_TRAITS, ALLOCATOR>]& str); ---- [.small]#xref:bsl/operator_rshift-02.adoc[_» more..._]# Extract a bitset from the specified input stream `is` into `x`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class CHAR_TYPE, class TRAITS, std::size_t N> std::basic_istream<CHAR_TYPE, TRAITS>& xref:bsl/operator_rshift-0f.adoc[operator>>]( std::basic_istream<CHAR_TYPE, TRAITS>& is, xref:bsl/bitset.adoc[bitset<N>]& x); ---- [.small]#xref:bsl/operator_rshift-0f.adoc[_» more..._]# == Return Value * reference to the input stream `is` * reference to the input stream == Parameters [cols="1,4"] |=== | Name| Description | *is* | input stream | *str* | string to read into or parse | *x* | bitset to populate from the stream |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#