tailcall-impl 2.0.3

The procedural macro implementation for the tailcall crate
Documentation
1
2
3
4
5
use syn::Ident;

pub fn helper_ident(fn_name: &Ident) -> Ident {
    Ident::new(&format!("__tailcall_build_{}_thunk", fn_name), fn_name.span())
}