Packages
aho_corasick
0.0.1
Aho-Corasick algorithm, implemented in Elixir using Erlang's :digraph for the graph structure
Current section
Files
Jump to
Current section
Files
lib/debug.ex
defmodule Debug do
defmacro debug(obj) do
quote do
unquote(obj) |> inspect |> IO.puts
end
end
end