Just another update

This commit is contained in:
Ingy döt Net 2015-02-20 00:35:01 -05:00
parent a25938f123
commit 00a190b0a6
6591 changed files with 94363 additions and 23227 deletions

View file

@ -0,0 +1 @@
m = containers.Map({'a' 'b' 'C'}, [1 2 3]);

View file

@ -0,0 +1,4 @@
m = containers.Map;
m('a') = 1;
m('b') = 2;
m('C') = 3;

View file

@ -0,0 +1 @@
m = containers.Map([51 72 37], {'fiftyone' 'seventytwo' 'thirtyseven'});

View file

@ -0,0 +1,4 @@
m = containers.Map('KeyType', 'double', 'ValueType', 'any');
m(51) = 'fiftyone';
m(72) = 'seventytwo';
m(37) = 'thirtyseven';