Struct coco::deque::Worker [] [src]

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

Worker side of a work-stealing deque.

There is only one worker per deque.

Methods

impl<T> Worker<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);

Pushes an element onto the bottom of the deque.

Examples

use coco::deque;

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

Pops an element from the bottom of the deque.

Examples

use coco::deque;

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

assert_eq!(w.pop(), Some(2));
assert_eq!(w.pop(), Some(1));
assert_eq!(w.pop(), None);

Steals an element from the top of the deque.

Examples

use coco::deque;

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

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

Trait Implementations

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

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

Formats the value using the given formatter.