We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
type Foo = protocol!( Recv usize, Send usize, Nest { Send usize, Nest { Recv usize, Choose [ { Escape Z }, { Send usize, Escape S<Z> } ] } } );
should expand to
type Foo = Recv<usize, Send<usize, Nest<Send<usize, Nest<Recv<usize, Choose<Escape<Z>, Finally<Send<usize, Escape<S<Z>> > > > > > > > > >
The text was updated successfully, but these errors were encountered:
Done, but now I need to do some trick that looks like this:
proto!( Atm = { Recv usize, Send usize, Fun = { Recv i8, Send i8, End } } );
produces:
type Atm = Recv<usize, Send<usize, Fun>>; type Fun = Recv<i8, Send<i8, End>>;
edit: I don't really need this it'd just be nice.
Sorry, something went wrong.
No branches or pull requests
should expand to
The text was updated successfully, but these errors were encountered: