I have a state. There are two attributes apples and blueApples. When the apples changed, I want to trigger filter apples to set blueApples. How can I do it in same reactor ? I don't have any idea. Anyone can help?
struct State {
var apples: [Apple] = []
var blueApples: [Apple] = []
}