Eric Chee
12/18/2022, 6:18 PMflowOf(1, 2, 3).single() im gonna assume that throws IllegalStateException
• B) if i use flowOf(1, 2, 3).first() that will return 1
• C) if i use flowOf().first() or flowOf().single() they both throw NoSuchElementException
Is that interpretation right?