|
|
|
|
|
by erhaetherth
1009 days ago
|
|
There's an easier approach that will also aid you in telling you how to precisely chop up your function. Simply don't chop up your function until you need a slice of it somewhere else. Then refactor out the bit you need. You'll find out exactly which bits need to be replaced with variables and exactly where the slice needs to happen. |
|