Skip to content
Snippets Groups Projects
size.m 168 B
function out = size(self)
% get hashtable size
% $Id$

% Return the number of keys in hashtable
% --------------------------------------
out = numel(self.keys);