Interface Segregation Principle
If you want to change selection, open document below and click on "Move attachment"
Unknown titleseWriter interface { AddUser(string) } func NewUser(d DatabaseWriter, firstName string, lastName string) { d.AddUser(firstName + lastName) } Dave Cheney wrote about this point when he described <span>Interface Segregation Principle. He also describes other advantages of limiting input that’s worth reading. The summary goal that drives home the idea is: the results has simultaneously been a function which is the mo Summary
status | not read | | reprioritisations | |
---|
last reprioritisation on | | | suggested re-reading day | |
---|
started reading on | | | finished reading on | |
---|
Details