SCT composition with `>>` operator
May now pass a state to Ex
, and use >>
for chaining. E.g.
state = some_state_producing_func()
Ex(state) >> test_student_typed('abc')
# equivalent to
Ex(state).test_student_typed('abc')
May now pass a state to Ex
, and use >>
for chaining. E.g.
state = some_state_producing_func()
Ex(state) >> test_student_typed('abc')
# equivalent to
Ex(state).test_student_typed('abc')