I want to store large number of keys from a dictionary into a list. I tried following:
1.dict.keys().collect() - doesn't work
2.dict.keys() also fails to store it as a list
Please suggest
I want to store large number of keys from a dictionary into a list. I tried following:
1.dict.keys().collect() - doesn't work
2.dict.keys() also fails to store it as a list
Please suggest