as String
fun <P> Lens<P, Byte?>.asString(emptyValue: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from Byte to String
fun <P> Lens<P, Short?>.asString(emptyValue: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from Short to String
Creates a Lens from Int to String
fun <P> Lens<P, Long?>.asString(emptyValue: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from Long to String
fun <P> Lens<P, Double?>.asString(emptyValue: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from Double to String
fun <P> Lens<P, Float?>.asString(emptyValue: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from Float to String
fun <P> Lens<P, Boolean?>.asString(emptyValue: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from Boolean to String
fun <P> Lens<P, List<Byte>>.asString(separator: String = ", ", prefix: String = "", postfix: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from List of Byte to String
fun <P> Lens<P, List<Short>>.asString(separator: String = ", ", prefix: String = "", postfix: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from List of Short to String
fun <P> Lens<P, List<Int>>.asString(separator: String = ", ", prefix: String = "", postfix: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from List of Int to String
fun <P> Lens<P, List<Long>>.asString(separator: String = ", ", prefix: String = "", postfix: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from List of Long to String
fun <P> Lens<P, List<Double>>.asString(separator: String = ", ", prefix: String = "", postfix: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from List of Double to String
fun <P> Lens<P, List<Float>>.asString(separator: String = ", ", prefix: String = "", postfix: String = ""): Lens<P, String>
Content copied to clipboard
Creates a Lens from List of Float to String