TwoWayConverter

Function

Common
public fun <T, V : AnimationVector> TwoWayConverter(
    convertToVector: (T) -> V,
    convertFromVector: (V) -> T,
): TwoWayConverter<T, V>

Factory method to create a TwoWayConverter that converts a type T from and to an AnimationVector type.

Parameters

convertToVectorconverts from type T to AnimationVector
convertFromVectorconverts from AnimationVector to type T