class
	LINKED_PRIORITY_QUEUE [G -> COMPARABLE]

General
	cluster: elks
	description: "Priority queues implemented as sorted lists"
	create: make, make_from_iterable, make_sublist

Ancestors
	PRIORITY_QUEUE* [G -> PART_COMPARABLE]
	SORTED_TWO_WAY_LIST [G -> COMPARABLE]

Queries
	changeable_comparison_criterion: BOOLEAN
	count: INTEGER_32
	extendible: BOOLEAN
	Full: BOOLEAN
	has (v: G): BOOLEAN
	is_empty: BOOLEAN
	is_equal (other: [like Current] LINKED_PRIORITY_QUEUE [G]): BOOLEAN
	is_inserted (v: G): BOOLEAN
	item: G
	linear_representation: LINEAR [G]
	new_cursor: TWO_WAY_LIST_ITERATION_CURSOR [G]
	object_comparison: BOOLEAN
	occurrences (v: [like sl_item] G): INTEGER_32
	off: BOOLEAN
	prunable: BOOLEAN
	readable: BOOLEAN
	replaceable: BOOLEAN
	writable: BOOLEAN

Commands
	append (s: SEQUENCE [G])
	compare_objects
	compare_references
	copy (other: [like Current] LINKED_PRIORITY_QUEUE [G])
	extend (v: [like sl_item] G)
	fill (other: CONTAINER [G])
	force (v: [like sl_item] G)
	prune (v: [like sl_item] G)
	prune_all (v: [like sl_item] G)
	put (v: [like item] G)
	remove
	replace (v: [like sl_item] G)
	wipe_out


Generated by ISE EiffelStudio