# CoroutineContext Coroutine(코루틴)을 어떻게 처리할 것인지에 대한 여러가지 정보(Element)를 포함 -> Element의 집합 CoroutineContext는 Interface로, 코루틴에 대한 설정 요소(Element)를 등록하고 Scope의 속성이 된다. 말이 너무 어렵다.. -> CoroutineContext는 Coroutine이 실행되는 환경이라고 생각하면 된다. CoroutineContext 인터페이스 내부에는 4가지의 메소드가 존재 public operator fun get(key: Key): E? get() - 연산자(operator) 함수의 의미로, 매개변수로 주어진 key에 해당하는 Context 요소를 반환하는 함수 public fun fold(initial..