FloatToDoubleMapper

Constructors

Link copied to clipboard
constructor()

Properties

Link copied to clipboard

A mapper for List to be used in TransformableValue.via.

Link copied to clipboard

A mapper for Set to be used in TransformableValue.via.

Functions

Link copied to clipboard
open override fun map(from: Float): Double

Map from to an instance of TO.

Link copied to clipboard
open fun mapList(from: List<Float>): List<Double>

Map each element in from to an instance of TO.

Link copied to clipboard
open fun mapNullable(from: Float?): Double?

Map nullable from to an instance of TO.

Link copied to clipboard
open fun mapNullableList(from: List<Float>?): List<Double>?

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

Link copied to clipboard
open fun mapNullableSet(from: Set<Float>?): Set<Double>?

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

Link copied to clipboard
open fun mapSet(from: Set<Float>): Set<Double>

Map each element in from to an instance of TO.