CollectionPriorityQueueIndexer
public struct CollectionPriorityQueueIndexer<
  Key: IdIndexable,
  Table: RandomAccessCollection & MutableCollection,
  Value
>: PriorityQueueIndexer, IndexProtocol
where Table.Index == Int, Table.Element == Value?extension CollectionPriorityQueueIndexer: DefaultInitializable where Table: DefaultInitializableAdapts a collection indexed by Ints into a PriorityQueueIndexer and IndexProtocol.
See also
ArrayPriorityQueueIndexer.
- 
                  
                  The collection that stores the mappings from Ints toValue?s.DeclarationSwift public var table: Table
- 
                  
                  Constrcuts selfby wrappingtable.DeclarationSwift public init(_ table: Table)
- 
                  
                  Accesses the value associated with key.DeclarationSwift public subscript(key: Key) -> Value? { get set }
- 
                  
                  Default initialization. DeclarationSwift public init()
 View on GitHub
            View on GitHub
           CollectionPriorityQueueIndexer Structure Reference
      CollectionPriorityQueueIndexer Structure Reference