key_sigil

~K sigil to boost Keyword list creation


License
Apache-2.0

Documentation

KeySigil

Provides ~K() sigil for short keyword list creation.

See the Example:

# …
import KeySigil

a = "bananas"
b = "float"
def c, do: "high"

~K(a b c)
=> [a: "bananas", b: "float", c: "high"]