Struct rustc_ap_rustc_data_structures::work_queue::WorkQueue[][src]

pub struct WorkQueue<T: Idx> { /* fields omitted */ }
Expand description

A work queue is a handy data structure for tracking work left to do. (For example, basic blocks left to process.) It is basically a de-duplicating queue; so attempting to insert X if X is already enqueued has no effect. This implementation assumes that the elements are dense indices, so it can allocate the queue to size and also use a bit set to track occupancy.

Implementations

Creates a new work queue that starts empty, where elements range from (0..len).

Attempt to enqueue element in the work queue. Returns false if it was already present.

Attempt to pop an element from the work queue.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.