mapNullableSet

open fun mapNullableSet(from: Set<FROM>?): Set<TO>?

Map each element in from to an instance of TO if from is not null.

Return

from mapped to a set of instances of TO.

Parameters

from

the source values.