tensorflow::
    
   InputList
  
  
   #include <ops.h>
  
  A type for representing the input to ops that require a list of tensors.
Summary
     Constructors and Destructors | 
   |
|---|---|
     
      
       InputList
      
      (const
      
       OutputList
      
      & out)
     
     
      Implicitly convert a list of outputs to a list of inputs.
      
     | 
   |
     
      
       InputList
      
      (const std::initializer_list<
      
       Input
      
      > & inputs)
     
      | 
   |
     
      
       InputList
      
      (const tensorflow::gtl::ArraySlice<
      
       Input
      
      > & inputs)
     
      | 
   |
     
      
       InputList
      
      (const std::initializer_list<
      
       Output
      
      > & out)
     
      | 
   
     Public functions | 
   |
|---|---|
     
      
       begin
      
      ()
     
     | 
    
     
       std::vector<
       
        Input
       
       >::iterator
      
      | 
   
     
      
       begin
      
      () const
     
     | 
    
     
       std::vector<
       
        Input
       
       >::const_iterator
      
      | 
   
     
      
       end
      
      ()
     
     | 
    
     
       std::vector<
       
        Input
       
       >::iterator
      
      | 
   
     
      
       end
      
      () const
     
     | 
    
     
       std::vector<
       
        Input
       
       >::const_iterator
      
      | 
   
Public functions
InputList
InputList( const OutputList & out )
Implicitly convert a list of outputs to a list of inputs.
This is useful to write code such as ops::Concat(ops::Split(x, 4)).