Popularity
0.7
Declining
Activity
0.0
Stable
0
3
0

Monthly Downloads: 0
Programming language: Erlang
License: MIT License
Tags: Macros    

rebind alternatives and similar packages

Based on the "Macros" category.
Alternatively, view rebind alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of rebind or a related project?

Add another 'Macros' Package

README

rebind

rebind parse transform for erlang

Usage

-module(test).
-compile({parse_transform, rebind}).

-export([sum/0]).

sum() ->
  State = 1,
  rebind(State) = State + 1,
  rebind(State) = State + 1,
  rebind(State) = State + 1,
  rebind(State) = State + 1,
  State.