Skip to content
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

[김동규] 챕터 2: 현실에서의 함수형 사고 #4

Merged
merged 1 commit into from
Apr 27, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions 챕터_2/챕터2:김동규.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# 챕터 2: 현실에서의 함수형 사고

#스터디-쏙쏙들어오는함수형코딩

### 2-1. 파트 1: 액션과 계산, 데이터

계층형 설계 원칙이 어떤 것 인지 살펴본다.

계층형 설계는 일반적으로 비즈니스 규칙, 도메인 규칙, 기술 스택 계층으로 나눕니다. 계층형 설계로 만든 코드는 테스트, 재사용, 유지보수가 쉽습니다.

```의견 & 생각
예제 이해가 힘드네요 ㅠㅠ.. 혹시 이해 하신분 있나요??
```
Comment on lines +11 to +13
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

약간 찍먹하는 챕터 느낌이라 저도 대강 이해만 했어요 ㅋㅋㅋㅋ 😮


### 2-2. 파트 2: 일급 추상

타임라인 다이어그램과 일급 추상에 대해 알아본다.

타임라인 다이어그램을 사용하면 액션이 시간 순서에 따라 어떻게 실행되는지 볼 수 있다. 기본적으로 타임라인은 서로 순서를 맞출 수 있는 기능이 없다.
타임라인 커팅을 통해 여러 타임라인이 동시에 진행될 때 순서를 맞출 수 있다. 타임라인 커팅은 고차 동작으로 구현한다.
Loading