let<R> method
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);
}
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
R let<R>(LetInvokableFunction<R, T> f) {
return f(this);
}