let<R> method

R let<R>(
  1. LetInvokableFunction<R, T> f
)

Kotlin style of coding This could be used on the Nullable objects to do some operation on it after we make sure that it's not null

Implementation

R let<R>(LetInvokableFunction<R, T> f) {
  return f(this);
}