Files
wanderer/lib/wanderer_app/ddrt/dynamic_rtree_impl/node.ex
Dmitry Popov 4136aaad76 Initial commit
2024-09-18 01:55:30 +04:00

8 lines
116 B
Elixir
Executable File

defmodule DDRT.DynamicRtreeImpl.Node do
@moduledoc false
def new(gen, seed) do
gen[:next].(seed)
end
end