Searched defs:PriorityList (Results 1 – 3 of 3) sorted by relevance
14 type PriorityList struct { struct15 elems []interface{}18 func (x *PriorityList) Len() int { return len(x.elems) }20 func (l *PriorityList) remove(i int) interface{} {26 func (l *PriorityList) Next() interface{} {
68 using PriorityList = std::vector<Priority>; member