初始化

This commit is contained in:
谢宇宁
2026-09-15 15:44:13 +07:00
commit a23ba685e9
1065 changed files with 101122 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
/// 可空 List 扩展
extension ListNullableX on List? {
/// 长度,null 视为 0
int em() => this?.length ?? 0;
/// 是否为空(null 也视为空)
bool empty() => this == null || this!.isEmpty;
/// 是否非空
bool notEmpty() => this != null && this!.isNotEmpty;
}