Package-level declarations

Types

Link copied to clipboard
class ListMappingConverter<L, R>(delegate: Converter<L, R>) : Converter<List<L>, List<R>>

Creates a list-mapping Converter which performs two-way conversions between values of type List<L> and values of type List<R>

Link copied to clipboard

A map-mapping Converter which performs two-way conversions between values of type Map<LK, LV> and values of type Map<RK, RV>

Link copied to clipboard
class SetMappingConverter<L, R>(delegate: Converter<L, R>) : Converter<Set<L>, Set<R>>

A set-mapping Converter which performs two-way conversions between values of type Set<L> and values of type Set<R>

Link copied to clipboard