Add support for CDSI.

This commit is contained in:
Greyson Parrelli
2022-05-18 11:42:38 -04:00
committed by Cody Henthorne
parent 8407f2ff69
commit 9ab275195f
16 changed files with 350 additions and 462 deletions

View File

@@ -8,4 +8,8 @@ fun <E> Optional<E>.or(other: Optional<E>): Optional<E> {
} else {
other
}
}
fun <E> Optional<E>.isAbsent(): Boolean {
return !isPresent
}