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
- Spring
- ingress
- 마이크로서비스
- CRD
- Algorithm
- Kotlin
- devops
- 동기화
- 클라우드 네이티브
- 헬름
- spring microservice
- decorator 패턴
- kubernetes
- cloud native
- 익명클래스
- ansible
- 코틀린
- Stress test
- Semaphore
- 클라우드 네이티브 자바
- Adapter 패턴
- Microservice
- MySQL
- 머신러닝
- 자바
- MSA
- java
- 쿠버네티스
- cloud native java
- nGrinder
Archives
- Today
- Total
카샤의 만개시기
Kotlin takeIf와 takeUnless함수 본문
takeIf 함수
람다식이 true이면 결과값을 반환.
public inline fun <T> T.takeIf(predicate: (T) -> Boolean): T? = if (predicate(this)) this else null
takeUnless 함수
람다식이 false이면 결과값을 반환.
public inline fun <T> 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 { it < 0 } ?: -1
다음과 같이 엘비스 연산자(?:)를 이용하여 user에서 str이 포함되어 있으면 해당 인덱스를, 포함되어 있지 않으면 -1을 리턴하게 할 수 있습니다.
'Kotlin' 카테고리의 다른 글
Kotlin Sequence(시퀀스) (0) | 2019.12.08 |
---|---|
코틀린의 DSL (Domain-Specific Language)과 DslMarker (0) | 2019.12.08 |
Kotlin Scope Functions (apply, with, let, also, run, use) (0) | 2019.12.08 |
코틀린 제네릭 (가변성, 스타 프로젝션, reified) (0) | 2019.11.30 |
코틀린 object (0) | 2019.08.02 |
Comments