operator<<,>> (std::student_t_distribution)
| Common mathematical functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical special functions (C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Mathematical constants (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Basic linear algebra algorithms (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Data-parallel types (SIMD) (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Floating-point environment (C++11) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Complex numbers | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
               Numeric array (
               
                valarray
               
               )
              
              | 
            |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Pseudo-random number generation | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Bit manipulation (C++20) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Saturation arithmetic (C++26) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Factor operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Interpolations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Generic numeric operations | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| C-style checked integer arithmetic | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
            |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
              
  | 
             
              
  | 
            |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Member functions | ||||
| Generation | ||||
| Characteristics | ||||
| Non-member functions | ||||
| 
               
                
                 
                  
                   (C++11)
                  
                 
                 
                  
                   (C++11)
                  
                  
                   (until C++20)
                  
                 
                
                
               | 
            ||||
| 
               
                
                 
                  
                   operator<<
                  
                  
                   operator>>
                  
                 
                
                
               
                
                 
                  
                   (C++11)
                  
                 
                 
                  
                   (C++11)
                  
                 
                
                
               | 
            
| 
           
           
            
             template
            
            
             <
            
            
             class
            
            CharT,
            
             class
            
            Traits
            
             >
            
             
         
             
              friend
             
             
              
               std::
               
                basic_ostream
               
              
             
             
              <
             
             CharT,Traits
             
              >
             
             
              &
             
               | 
         (1) | (C++11以降) | 
| 
           
           
            
             template
            
            
             <
            
            
             class
            
            CharT,
            
             class
            
            Traits
            
             >
            
             
         
             
              friend
             
             
              
               std::
               
                basic_istream
               
              
             
             
              <
             
             CharT,Traits
             
              >
             
             
              &
             
               | 
         (2) | (C++11以降) | 
擬似乱数分布 d に対するストリーム入出力操作を実行します。
        CharT
       
       および
       
        Traits
       
       テンプレートパラメータを持つストリームを使用して書き込まれている必要があります。そうでない場合、動作は未定義です。不正な入力が検出された場合、
       
        
         ist.
         
          setstate
         
         
          (
         
         std
         
          ::
         
         
          ios
         
         
          ::
         
         
          failbit
         
         
          )
         
        
       
       が呼び出され、
       
        
         std::ios_base::failure
        
       
       をスローする可能性があります。その場合、
       
        
         d
        
       
       は変更されません。
      これらの関数テンプレートは通常の unqualified lookup または qualified lookup では可視化されず、 argument-dependent lookup によってのみ、std::student_t_distribution<ResultType>が引数の関連クラスである場合に見つけることができます。
         目次 | 
       
パラメータ
| ost | - | データを挿入する出力ストリーム | 
| ist | - | データを抽出する入力ストリーム | 
| d | - | 疑似乱数分布 | 
戻り値
例外
不具合報告
以下の動作変更の欠陥報告書は、以前に公開されたC++規格に対して遡及的に適用されました。
| DR | 適用対象 | 公開時の動作 | 正しい動作 | 
|---|---|---|---|
| LWG 3519 | C++11 | 
         挿入演算子と抽出演算子の形式が未規定
          (hidden friendまたはクラス外関数テンプレートの可能性あり)  | 
        hidden friendとして規定 |