Skip to content

SCT composition with `>>` operator

Compare
Choose a tag to compare
@machow machow released this 21 Jun 17:51
· 405 commits to master since this release

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')