Skip to content
Snippets Groups Projects
isempty.m 141 B
Newer Older
function bool = isempty(self)
%ISEMPTY Check to see if the queue is empty
%   bool = isempty(queue)

% 

bool = isempty(self.lifo);