Page 1 of 1

Maps as members of List

Posted: Thu May 25, 2017 10:54 am
by nicalejo
Can I have Maps as elements of a List? I suspect the answer is no and is restricted to basic or structured types

If possible, what is the syntax to access the entry on the map in one element of the list?

THX

Re: Maps as members of List

Posted: Thu May 25, 2017 11:13 am
by Peter
nicalejo wrote:Can I have Maps as elements of a List?
something like this?

Code: Select all

Structure sList
  Map myMap.s()
EndStructure

NewList myList.sList()
Greetings ... Peter

Re: Maps as members of List

Posted: Thu May 25, 2017 11:22 am
by nicalejo
Great, a little bit hacking approach but pretty

Thanks