associateBy and groupBy function helps to build the maps from the elements of a collection indexed by the specified key.
keySelector: The key is defined in the keySelector parameter.
valueSelector: We can also specify an optional valueSelector to define what will be stored in the value of the map element, in case of not specifying the same it will consider the complete object as a value.
The difference between associateBy and groupBy is about how they process the objects with the respective key
associateBy - It uses the last suitable element as the result value.
groupBy - it produces the list of all suitable elements and puts it in the result value(s).
P.S. The returned map preserves the entry iteration order of the original collection.
val boardingList = listOf( OnBoarding("1", "AAA", "Chennai", "Bang", "IT"), OnBoarding("2", "BBB", "Bang", "Hyd", "IT"), OnBoarding("3", "CCC", "Bang", "Chennai", "Finance"), OnBoarding("4", "DDD", "Hyd", "Pune", "Finance"), OnBoarding("5", "DDD", "Chennai", "Bang", "IT") ) // Param either be 'it' or field references, both does the same job. println(boardingList.groupBy({ it.baseLocation }, { it.eName })) println(boardingList.groupBy(OnBoarding::baseLocation, OnBoarding::eName)) println(boardingList.associateBy({ it.baseLocation }, { it.eName })) println(boardingList.associateBy(OnBoarding::baseLocation,OnBoarding::eName))
Output:
{Chennai=[AAA, DDD], Bang=[BBB, CCC], Hyd=[DDD]} {Chennai=[AAA, DDD], Bang=[BBB, CCC], Hyd=[DDD]} {Chennai=DDD, Bang=CCC, Hyd=DDD} {Chennai=DDD, Bang=CCC, Hyd=DDD}
Good Luck, Happy Coding :-)
No comments:
Post a Comment