Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- java
- Spring
- ansible
- MySQL
- 클라우드 네이티브 자바
- nGrinder
- Microservice
- CRD
- 머신러닝
- spring microservice
- devops
- decorator 패턴
- 익명클래스
- 동기화
- 헬름
- cloud native java
- Stress test
- Semaphore
- Algorithm
- ingress
- MSA
- Adapter 패턴
- kubernetes
- Kotlin
- 마이크로서비스
- 쿠버네티스
- 자바
- 클라우드 네이티브
- cloud native
- 코틀린
Archives
- Today
- Total
목록takeUnless (1)
카샤의 만개시기
Kotlin takeIf와 takeUnless함수
takeIf 함수 람다식이 true이면 결과값을 반환. public inline fun T.takeIf(predicate: (T) -> Boolean): T? = if (predicate(this)) this else nulltakeUnless 함수 람다식이 false이면 결과값을 반환. public inline fun T.takeIf(predicate: (T) -> Boolean): T? = if (!predicate(this)) this else null예제 val user = "KaSha" val str = "Sha" var index = 0 index = user.indexOf(str).takeIf { it >= 0 } ?: -1 index = user.indexOf(str).takeUnless ..
Kotlin
2019. 12. 8. 04:21