Updated on 2026-08-14

This commit is contained in:
Tangem 2023-04-16 21:14:54 +03:00
parent f084f256b4
commit 6631ad696c
7 changed files with 223 additions and 3 deletions

View file

@ -0,0 +1,6 @@
package com.tangem.utils.extensions
/**
[REDACTED_AUTHOR]
*/
fun Char.isNotWhitespace(): Boolean = !this.isWhitespace()

View file

@ -0,0 +1,6 @@
package com.tangem.utils.extensions
/**
[REDACTED_AUTHOR]
*/
fun <T> Collection<T>.isSingleItem(): Boolean = this.size == 1