Just another update
This commit is contained in:
parent
a25938f123
commit
00a190b0a6
6591 changed files with 94363 additions and 23227 deletions
|
|
@ -0,0 +1 @@
|
|||
m = containers.Map({'a' 'b' 'C'}, [1 2 3]);
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
m = containers.Map;
|
||||
m('a') = 1;
|
||||
m('b') = 2;
|
||||
m('C') = 3;
|
||||
|
|
@ -0,0 +1 @@
|
|||
m = containers.Map([51 72 37], {'fiftyone' 'seventytwo' 'thirtyseven'});
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
m = containers.Map('KeyType', 'double', 'ValueType', 'any');
|
||||
m(51) = 'fiftyone';
|
||||
m(72) = 'seventytwo';
|
||||
m(37) = 'thirtyseven';
|
||||
Loading…
Add table
Add a link
Reference in a new issue