Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 388 Bytes

06_가드문을 사용하여 옵셔널 문자열을 안전하게 래핑 해제하는 함수를 구현합니다.md

File metadata and controls

11 lines (10 loc) · 388 Bytes

가드문으로 옵셔널 문자열을 안전하게 래핑 해제하는 함수 만들기

func doGuard(word str: String?) -> String {
    guard let unwrapping = str else { // if-let은 함수 밖에서도 사용이 가능하지만, guard-let은 함수 내에서만 구현이 가능하다.
        print("this is nil")
        return "nil"
    }
    
    return unwrapping
}