e3ac51b173
1 2 3 4 5 6 7 8 9 10 11
-module(initial_dataflow). -export([test/0]). test() -> false = assoc_guard(#{}), true = assoc_guard(not_a_map), ok. assoc_guard(#{}) -> true; assoc_guard(Q) -> false.