Popularity
0.8
Growing
Activity
0.0
Stable
2
2
1

Monthly Downloads: 0
Programming language: Elixir
License: Apache License 2.0
Tags: Macros    

kwfuns alternatives and similar packages

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

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

Add another 'Macros' Package

README

Kwfuns

Build Status Hex.pm Inline docs

Macros to create functions with syntax based keyword parameters with default values

Usage

    defmodule MyModule do
      use Kwfuns
      # Now use the macros defkw or defkwp
      ...
    end

Detailed Documentation can be found here

LICENSE

Same as Elixir, which is Apache 2.0, please refer to [LICENSE](LICENSE) for details.

Installation

If available in Hex, the package can be installed as:

  1. Add kwfuns to your list of dependencies in mix.exs:

    def deps do
      [{:kwfuns, "~> 0.0.1"}]
    end
    
  2. Ensure kwfuns is started before your application:

    def application do
      [applications: [:kwfuns]]
    end
    


*Note that all licence references and agreements mentioned in the kwfuns README section above are relevant to that project's source code only.