Popularity
0.6
Growing
Activity
0.0
Stable
0
2
0
Monthly Downloads: 10
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.
-
rulex
This tiny library (2 macros only) allows you to define very simple rule handler using Elixir pattern matching. -
TypedStructor
TypedStructor is a library for defining typed structs, exceptions and record macros with effortlessly. -
apix
Simple convention and DSL for transformation of elixir functions to an API for later documentation and or validation. -
Bang
Bang simply adds dynamic bang! functions to your existing module functions with after-callback.
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
Promo
www.influxdata.com

Do you think we are missing an alternative of rebind or a related project?
Popular Comparisons
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.