You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Consider a process p of type: < A > for some session A, to use it we need a channel following session A, a typical pattern is to allocate such a channel and consume its dual:
example = proc()
new (c : A, d : ~A)
( @p(c)
| PROC_USING_d )
Initial suggestion with terse syntax:
example = proc()
@p(d : ~A)
PROC_USING_d
Others suggestions are welcome
The text was updated successfully, but these errors were encountered:
Consider a process
p
of type:< A >
for some sessionA
, to use it we need a channel following sessionA
, a typical pattern is to allocate such a channel and consume its dual:Initial suggestion with terse syntax:
Others suggestions are welcome
The text was updated successfully, but these errors were encountered: