Updated on 2026-08-14

This commit is contained in:
Tangem 2022-02-08 16:06:29 +03:00
parent c22e1bdf5b
commit c01168fd65
23 changed files with 17812 additions and 10603 deletions

View file

@ -0,0 +1,8 @@
package com.tangem.tap.common.extensions
/**
[REDACTED_AUTHOR]
*/
fun StringBuilder.appendIf(value: String, predicate: (String) -> Boolean) {
if (predicate(value)) this.append(value)
}