Packages

Leex is an open source implementation of :erlang.leex.

Current section

Files

Jump to
leex lib leex util orddict.ex
Raw

lib/leex/util/orddict.ex

defmodule Leex.Util.OrdDict do
def new(), do: :orddict.new()
def store(dict, key, value), do: :orddict.store(key, value, dict)
end