let<E> method
E?
let<E>(
- E operation(
- T it
判空后执行方法 返回新的参数
Implementation
E? let<E>(E Function(T it) operation) {
if (this != null) {
return operation(this);
}
return null;
}