Fixes multidimensional array (#4239)

This commit is contained in:
Haden Wasserbaech 2021-10-10 10:32:14 -07:00 committed by GitHub
parent 7e5abe2aaf
commit 1fb1ad6b5f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -259,7 +259,7 @@ nomes.length; // pega o tamanho
nomes.length = 1; // tamanhos pode ser alterados (para arrays dinâmicos) nomes.length = 1; // tamanhos pode ser alterados (para arrays dinâmicos)
// arrays multidimensionais // arrays multidimensionais
uint x[][5]; // array com 5 arrays dinâmicos como elementos (ordem da maioria uint[][5] x; // array com 5 arrays dinâmicos como elementos (ordem da maioria
// das linguagens) // das linguagens)
// Dicionários (qualquer tipo para qualquer tipo) // Dicionários (qualquer tipo para qualquer tipo)

View File

@ -295,7 +295,7 @@ names.length; // get length
names.length = 1; // lengths can be set (for dynamic arrays in storage only) names.length = 1; // lengths can be set (for dynamic arrays in storage only)
// multidimensional array // multidimensional array
uint x[][5]; // arr with 5 dynamic array elements (opp order of most languages) uint[][5] x; // arr with 5 dynamic array elements (opp order of most languages)
// Dictionaries (any type to any other type) // Dictionaries (any type to any other type)
mapping (string => uint) public balances; mapping (string => uint) public balances;

View File

@ -213,7 +213,7 @@ names.length; // 获得数组长度
names.length = 1; // 可以设定长度(仅针对 storage 中的动态数组) names.length = 1; // 可以设定长度(仅针对 storage 中的动态数组)
// 多维数组 // 多维数组
uint x[][5]; // 5个动态数组元素的数组(和多数语言的顺序相反) uint[][5] x; // 5个动态数组元素的数组(和多数语言的顺序相反)
// 字典类型 (任一类型到其他类型的映射) // 字典类型 (任一类型到其他类型的映射)
mapping (string => uint) public balances; mapping (string => uint) public balances;