B4J Question maximum size of a map

MrDezibel

Member
Licensed User
Longtime User
Hi,
i'm reading a map file with

puffermap=File.ReadMap(path,"puffermap.txt")

and

Log(puffermap.Size)

always says 6570, even though ther are more than 13000 entrys in the file.

Is 6570 the maximum of a map or am i missing something else..?
 

DonManfred

Expert
Licensed User
Longtime User
always says 6570, even though ther are more than 13000 entrys in the file.
A map can only contain unique keys. 6570 in this case. some of the 13000 have he same KEY, right?
 
Upvote 0
Top