안녕하세요. 이번에는 Flow라는 오픈소스를 직접 써보는 시간을 가져볼게요. This library provides a bunch of extension methods for a better fluent syntax in Swift. This style is very useful for some operations that benefit from being able to be chained (composed) together. Flow 라이브러리는 Swift의 가독성을 높이는 확장 method를 제공합니다. 살펴볼게요ㅎㅎ ## 1. then then method는 copy한 인스턴스를 리턴하기 때문에, 주로 인스턴스를 초기화할 때 사용합니다. 초기 설정들을 블록 안에서 처리하기 때문에, 초기화를 어떻게 ..