Class RemapItr<T, T2>
  
  Iterator that re-maps iterated values via a Func
 
  
  
    Inheritance
    
    RemapItr<T, T2>
   
  
  
  Namespace: g3
  Assembly: cs.temp.dll.dll
  Syntax
  
    public class RemapItr<T, T2> : IEnumerable<T>, IEnumerable
   
  Type Parameters
  
  Constructors
  
  
  
  
  RemapItr(IEnumerable<T2>, Func<T2, T>)
  
  
  Declaration
  
    public RemapItr(IEnumerable<T2> otherIterator, Func<T2, T> valueFunction)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | IEnumerable<T2> | 
        otherIterator | 
         | 
      
      
        | Func<T2, T> | 
        valueFunction | 
         | 
      
    
  
  Fields
  
  
  
  OtherItr
  
  
  Declaration
  
    public IEnumerable<T2> OtherItr
   
  Field Value
  
  
  
  ValueF
  
  
  Declaration
  
    public Func<T2, T> ValueF
   
  Field Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | Func<T2, T> | 
         | 
      
    
  
  Methods
  
  
  
  
  GetEnumerator()
  
  
  Declaration
  
    public IEnumerator<T> GetEnumerator()
   
  Returns
  
  Implements