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"]
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"]