-
Notifications
You must be signed in to change notification settings - Fork 0
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
<5주차> Fast Enumeration 이란 무엇인지 설명하시오 #23
Comments
집합내의 원소들을 순회할수 있도록 해주는것 |
for ... in 을 사용해서 내부의 요소들을 탐색할 수 있다. |
집합타입 내 원소 개체들을 순회하는 반복문, for ... in 구문 Array, Dictionary는 기본적으로 for ... in 구문에 적용이 가능하며 이들은 SequenceType이라는 프로토콜 명을 따라야 한다. SequenceType이라는 프로토콜은 다음과 같이 정의되어 있다. protocol SequenceType: _Sequence_Type {
typealias Generator: GeneratorType
func generate() -> Generator
} |
Swift에서는 Array와 딕셔너리 같은 컬렉션 안에 요소들을 for in 구문으로 순회하는 것 for (type *object in collection) {
statements
} |
fast enumerationObject-C에서부터 사용했던 개념 |
No description provided.
The text was updated successfully, but these errors were encountered: