Add threading example.

This commit is contained in:
Stephen Chung
2021-01-25 11:31:54 +08:00
parent ab317bec4e
commit e902c74073
4 changed files with 64 additions and 29 deletions

View File

@@ -19,7 +19,7 @@ macro_rules! impl_args {
($($p:ident),*) => {
impl<$($p: Variant + Clone),*> FuncArgs for ($($p,)*)
{
#[inline]
#[inline(always)]
fn into_vec(self) -> StaticVec<Dynamic> {
let ($($p,)*) = self;