Skip to content

Commit 1b9f4f4

Browse files
Update README_EN.md
1 parent a717050 commit 1b9f4f4

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

README_EN.md

+8-6
Original file line numberDiff line numberDiff line change
@@ -102,14 +102,16 @@ For the professionals, this might be consider a taboo. But i do this in purpose
102102

103103
I removed the domain layers by purpose to maximize the **Pure Function** approach in the Data Layers.
104104

105-
## Pure Function Approach:
105+
## Pure Function Approach
106106
1. Every functions in Data Layer should be **Pure Functions** or **Suspended Pure Functions**.
107107
2. Pure Function should obey these criteria:
108-
>1. Same output for the same input.
109-
>2. No side effects.
110-
>3. No states.
111-
>4. Function duty is only change an input into an output. For example; an Integer into a String, or a Payload into a Data, or Error if the process cannot be fulfilled.
112-
3. This approach requires the same output for the same given input, means that if we expect a different output, we should provide different input. Example case; if there is changes in the business logic; In the simple way, for every different business logic we shall provides different payload. Or in another way, we don't have such concept "a business process change", rather we consider it as "a new business process".
108+
>1. Immutable Argument.
109+
>2. Always return result not reference (not relevant to kotlin/java but good to know it).
110+
>3. Same output for the same input.
111+
>4. No side effects.
112+
>5. No states.
113+
>6. Function duty is only change an input into an output. For example; an Integer into a String, or a Payload into a Data, or Error if the process cannot be fulfilled.
114+
4. This approach requires the same output for the same given input, means that if we expect a different output, we should provide different input. Example case; if there is changes in the business logic; In the simple way, for every different business logic we shall provides different payload. Or in another way, we don't have such concept "a business process change", rather we consider it as "a new business process".
113115
We don't change the business process, but we scale the business process by providing new Pure Function and new Payload for every new business process.
114116
4. No more Interface Segregation. Imagine a factory object that implements so many UseCases, so it is become very bulky, while all we need is only 1 API. It is so unefficient to build the whole object only to use one API. This is always be a dilema between good practices and memory management. But with Pure Function Approach, there is no more worries. For any problem, all you need is just a (new/existing) Function.
115117

0 commit comments

Comments
 (0)