I have a nested map with all self-defined objects as key and values
typedef map <Time,WindLogType> minuteIntervalData;
typedef map <Date,minuteIntervalData> DayData;
How can I access the the data in the inner map by using the operator [] when the inner key is unknown?
Eg.
DayData[date1] //gets time1,time2,time3..... and WindLogType