GoLang Threaded::shift

request it (268)
GoLang replacement for PHP's Threaded::shift [edit | history]



Do you know a GoLang replacement for PHP's Threaded::shift? Write it!

PHP Threaded::shift

PHP original manual for Threaded::shift [ show | php.net ]

Threaded::shift

(PECL pthreads >= 2.0.0)

Threaded::shiftManipulation

Description

public mixed Threaded::shift ( void )

Shifts an item from the objects property table

Return Values

The first item from the objects property table

Examples

Example #1 Shifting the first item from the property table of a threaded object

<?php
$safe 
= new Threaded();

while (
count($safe) < 10)
    
$safe[] = count($safe);

var_dump($safe->shift());
?>

The above example will output:

int(0)