Chapter 18: Backpressure and not related to Combine

what does the following statement means:

paused = receiveValue(input) == false

Thank you In advance

if receiveValue(input) == false {
paused = true
} else {
paused = false
}

Or, put another way …

paused = !receiveValue(input)

Thank you for explaining this to me @billm