let<E> method

E? let<E>(
  1. E operation(
    1. T it
    )
)

判空后执行方法 返回新的参数

Implementation

E? let<E>(E Function(T it) operation) {
  if (this != null) {
    return operation(this);
  }
  return null;
}