DoublyLinkedKeyValue<'K, 'V> Type
Represents a doubly-linked key-value node that is used in the LRUCache.
Constructors
| Constructor | Description | 
            
                
              
              
                  Full Usage: 
                   
              DoublyLinkedKeyValue(prev, next, key, value)
                  Parameters: 
 DoublyLinkedKeyValue<'K, 'V>
                    
                    next : DoublyLinkedKeyValue<'K, 'V>
                    
                    key : 'K
                    
                    value : 'V
                    
                    Returns: DoublyLinkedKeyValue<'K, 'V>
                  
                   | 
          
            
 
  | 
        
Instance members
| Instance member | Description | 
            
                
              
              
                  Full Usage: 
                   
              this.Key
                  Returns: 'K
                  
                   | 
          
            
  | 
        
            
                
              
              
                  Full Usage: 
                   
              this.Next
                   | 
          |
            
                
              
              
                  Full Usage: 
                   
              this.Prev
                   | 
          |
            
                
              
              
                  Full Usage: 
                   
              this.RefCount
                   | 
          |
            
                
              
              
                  Full Usage: 
                   
              this.Value
                  Returns: 'V
                  
                   | 
          
            
  | 
        
            B2R2