In Swift, the @discardableResult attribute is used to indicate that the return value of a function can be ignored and doesn’t need to be used. This is particularly useful when a function has side effects or when you intentionally want to ignore its return value. Let’s illustrate this with a...
[Read More]
Swift - @discardableResult 란?
Swift의 @discardableResult 어트리뷰트는 함수의 반환값을 무시하고 사용하지 않아도 되는 것을 나타냅니다. 이것은 주로 함수가 부수적인 효과(side effect)를 가지거나 반환값을 사용하지 않을 때 유용합니다. 예를 들어, 파일을 열고 닫는 함수에서 반환되는 파일 핸들을 사용하지 않는 경우 이 어트리뷰트를 사용하여 경고 메시지를 제거할 수 있습니다.
[Read More]
What is the @dynamicMemberLookup ?
@dynamicMemberLookup is one of the property wrappers introduced in Swift 5.1. It allows dynamic access to properties and subscript members at runtime, enhancing code readability and convenience.
[Read More]
Swift - @dynamicMemberLookup 이란?
@dynamicMemberLookup는 Swift 5.1부터 도입된 속성 래퍼(property wrapper) 중 하나로, 런타임에서 속성 및 서브스크립트 멤버에 대한 동적 접근을 허용하는 기능을 제공합니다. 이를 통해 코드의 가독성을 높이고 편의성을 개선할 수 있습니다.
[Read More]
코틀린 기본 문법
코틀린으로 스프링 부트 프로젝트 시작하기 - 1
코틀린 기본 문법 정리
[Read More]
새해 결심으로 시작하는 정원사들 1일 1커밋 프로젝트
카카오워크 Bot을 활용해본 후기
새해 결심으로 시작하는 “정원사들” 프로젝트
[Read More]