aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/listutil.kt
diff options
context:
space:
mode:
Diffstat (limited to 'src/main/kotlin/util/listutil.kt')
-rw-r--r--src/main/kotlin/util/listutil.kt9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/kotlin/util/listutil.kt b/src/main/kotlin/util/listutil.kt
new file mode 100644
index 0000000..73cb23e
--- /dev/null
+++ b/src/main/kotlin/util/listutil.kt
@@ -0,0 +1,9 @@
+
+package moe.nea.firmament.util
+
+fun <T, R> List<T>.lastNotNullOfOrNull(func: (T) -> R?): R? {
+ for (i in indices.reversed()) {
+ return func(this[i]) ?: continue
+ }
+ return null
+}