extract<R> method

  1. @override
R extract<R>(
  1. R fn<A, B>(
    1. Codable<A>? codableA,
    2. Codable<B>? codableB
    )
)
override

Extracts the child Decodables for the type parameters A and B from the composed Decodable for type T<A, B>.

Implementation

@override
R extract<R>(R Function<A, B>(Codable<A>? codableA, Codable<B>? codableB) fn) {
  return fn<K, V>(keyCodable, codable);
}