map<R extends Object> abstract method

Entity<R> map<R extends Object>(
  1. R mapper(
    1. T
    )
)

Transforms Entity data to another entity data with mapper Validation remains the same

Implementation

Entity<R> map<R extends Object>(R Function(T) mapper);