Struct coco::deque::Stealer [] [src]

pub struct Stealer<T> { /* fields omitted */ }

Stealer side of a work-stealing deque.

Stealers may be cloned in order to create more stealers for the same deque.

Methods

impl<T> Stealer<T>
[src]

Returns the number of elements in the deque.

If used concurrently with other operations, the returned number is just an estimate.

Examples

use coco::deque;

let (w, _) = deque::new();
for i in 0..30 {
    w.push(i);
}
assert_eq!(w.len(), 30);

Steals an element from the top of the deque.

Examples

use coco::deque;

let (w, s) = deque::new();
w.push(1);
w.push(2);

assert_eq!(s.steal(), Some(1));
assert_eq!(s.steal(), Some(2));
assert_eq!(s.steal(), None);

Trait Implementations

impl<T: Send> Send for Stealer<T>
[src]

impl<T: Send> Sync for Stealer<T>
[src]

impl<T> Clone for Stealer<T>
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl<T> Debug for Stealer<T>
[src]

Formats the value using the given formatter.