Skip to content
Snippets Groups Projects
length.m 153 B
Newer Older
function length = length(self)
length = 0;
node = self.stack_pointer;
while ~isempty(node)
  length = length + 1;
  node = next(node);
end
end