SE450: Preconditions [42/57] Previous pageContentsNext page

/**
Remove message at head
@return the message at the head
@precondition size() > 0
*/
Message remove()
{
return elements.remove(0);
}

Previous pageContentsNext page