Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[1.1.0/AN_FEAT] 배틀 구도 날씨 저장 #343
[1.1.0/AN_FEAT] 배틀 구도 날씨 저장 #343
Changes from all commits
dc2e133
0b292fa
4ed8df2
b385899
d36c3b9
0561186
cce9368
8cec8bc
4a7b93f
fc45fa2
d1e3103
590b2c6
aaaa367
bfa43f8
1bce03d
8777ef0
abd1144
98e30f1
0d2998f
f7ba61d
File filter
Filter by extension
Conversations
Jump to
There are no files selected for viewing
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
crossinline
으로 해야 할 이유가 있나요?비지역 반환을 방지해야하는 게 맞나..?
crossinline
한 번도 안 해봐서 잘 모르겠슴둥There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@sh1mj1 저는 no-inline 람다 블록에서 inline 람다를 호출할 필요성이 있을 때
crossinline
키워드를 사용합니다!그리고, 다른 함수로 람다식을 argument로서 전달해줘야하는 상황이라면
noinline
을 사용합니다 ㅎㅎ여담으로 inline 키워드를 활용하면 비지역 반환을 사용할 수 있긴 합니다만, 비지역 반환을 선호하지 않습니다.
사용할 일도 크게 없을 뿐 더러, 무분별하게 사용할 경우 코드를 읽는 사람 입장에서 헷갈리기 때문입니다.
가끔 코테 풀때 repeat{} 내부에서 비지역 반환을 사용한 경우 말고 사용한 적이 없네요 😉
심지는 어떨 때 비지역 반환을 사용하시는지 궁금하네요! 😁
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거는 왜 다시 반환하도록 수정되었나요 ?!?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
어,,? 그러게요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
아 예니가 아래에
=
을 사용했길래 통일성 맞추려고 사용했던 것 같습니다!