view _FullBNT/BNT/@assocarray/assocarray.m @ 8:b5b38998ef3b

added all that other stuff
author matthiasm
date Fri, 11 Apr 2014 15:54:25 +0100
parents
children
line wrap: on
line source
function A = assocarray(keys, vals)
% ASSOCARRAY Make an associative array
% function A = assocarray(keys, vals)
%
% keys{i} is the i'th string, vals{i} is the i'th value.
% After construction, A('foo') will return the value associated with foo.

A.keys = keys;
A.vals = vals;
A = class(A, 'assocarray');