Skip to content

Proc macro based version #13

Closed
Closed
@harryfei

Description

@harryfei

Do you have a plan to rebuild the macros based on the proc_macro?

Those are sweeter.

#[cached(Fib)]
fn fib(n: u64) -> u64 {
     if n == 0 || n == 1 { 
        return n; 
      }
      fib(n-1) + fib(n-2)
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions