diff options
author | Björn Gustavsson <[email protected]> | 2016-02-01 14:15:02 +0100 |
---|---|---|
committer | Björn Gustavsson <[email protected]> | 2016-02-01 14:15:02 +0100 |
commit | f269d952033a177836fa5e949857035c6b6f9c6b (patch) | |
tree | b7fe277d48515f9f24599c5b75c3d8be059a5211 /lib/stdlib/src/qlc.erl | |
parent | 6c574b52d66a6c74f7413fd19c1b99564aef293e (diff) | |
parent | eb75295eb95602d0930ce9070447537b7ace22df (diff) | |
download | otp-f269d952033a177836fa5e949857035c6b6f9c6b.tar.gz otp-f269d952033a177836fa5e949857035c6b6f9c6b.tar.bz2 otp-f269d952033a177836fa5e949857035c6b6f9c6b.zip |
Merge branch 'bjorn/stdlib/remove-tuple-fun-vestiges'
* bjorn/stdlib/remove-tuple-fun-vestiges:
Eliminate redundant double is_function test
Diffstat (limited to 'lib/stdlib/src/qlc.erl')
-rw-r--r-- | lib/stdlib/src/qlc.erl | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/lib/stdlib/src/qlc.erl b/lib/stdlib/src/qlc.erl index 3ba3a88038..24e64efee7 100644 --- a/lib/stdlib/src/qlc.erl +++ b/lib/stdlib/src/qlc.erl @@ -808,21 +808,21 @@ options(Options0, [Key | Keys], L) when is_list(Options0) -> {ok, U}; {pre_fun, U=undefined} -> {ok, U}; - {info_fun, Fun} when is_function(Fun), is_function(Fun, 1) -> + {info_fun, Fun} when is_function(Fun, 1) -> {ok, Fun}; - {pre_fun, Fun} when is_function(Fun), is_function(Fun, 1) -> + {pre_fun, Fun} when is_function(Fun, 1) -> {ok, Fun}; - {post_fun, Fun} when is_function(Fun), is_function(Fun, 0) -> + {post_fun, Fun} when is_function(Fun, 0) -> {ok, Fun}; - {lookup_fun, Fun} when is_function(Fun), is_function(Fun, 2) -> + {lookup_fun, Fun} when is_function(Fun, 2) -> {ok, Fun}; {max_lookup, Max} when is_integer(Max), Max >= 0 -> {ok, Max}; {max_lookup, infinity} -> {ok, -1}; - {format_fun, Fun} when is_function(Fun), is_function(Fun, 1) -> + {format_fun, Fun} when is_function(Fun, 1) -> {ok, Fun}; - {parent_fun, Fun} when is_function(Fun), is_function(Fun, 0) -> + {parent_fun, Fun} when is_function(Fun, 0) -> {ok, Fun}; {key_equality, KE='=='} -> {ok, KE}; @@ -885,7 +885,7 @@ options(Options0, [Key | Keys], L) when is_list(Options0) -> {depth, Depth} when Depth =:= infinity; is_integer(Depth), Depth >= 0 -> {ok, Depth}; - {order, Order} when is_function(Order), is_function(Order, 2); + {order, Order} when is_function(Order, 2); (Order =:= ascending); (Order =:= descending) -> {ok, Order}; |