Function

TwoWayConverter

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

TwoWayConverter

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

convertToVector converts from type T to AnimationVector
convertFromVector converts from AnimationVector to type T