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

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