Gitly
English
Русский
Español
日本語
中文
Português
Log in
Register
v2
/
vlib
/
v
/
tests
/
skip_unused
/
indexexpr_result_propagation.vv
12
lines
·
11
sloc
·
162 bytes
·
cd152169e8792d07ce8ef5403f397f2dc4721610
Raw
1
pub struct Row {
2
pub mut:
3
vals []?string
4
}
5
6
mut set := map[string]bool{}
7
rows := []Row{}
8
for row in rows {
9
val := row.vals[0]!
10
set[val] = true
11
}
12
dump(set.len)
13