convert<K> method

K convert<K>(
  1. K op(
    1. T value
    )
)

Implementation

K convert<K>(K Function(T value) op) {
  return op(this);
}