chore(emqx_rule_funcs): regroup export functions
This commit is contained in:
parent
c60915293a
commit
03d8e06ff7
|
@ -2,7 +2,7 @@
|
||||||
{application, emqx_rule_engine, [
|
{application, emqx_rule_engine, [
|
||||||
{description, "EMQX Rule Engine"},
|
{description, "EMQX Rule Engine"},
|
||||||
% strict semver, bump manually!
|
% strict semver, bump manually!
|
||||||
{vsn, "5.0.27"},
|
{vsn, "5.0.28"},
|
||||||
{modules, []},
|
{modules, []},
|
||||||
{registered, [emqx_rule_engine_sup, emqx_rule_engine]},
|
{registered, [emqx_rule_engine_sup, emqx_rule_engine]},
|
||||||
{applications, [kernel, stdlib, rulesql, getopt, emqx_ctl, uuid]},
|
{applications, [kernel, stdlib, rulesql, getopt, emqx_ctl, uuid]},
|
||||||
|
|
|
@ -80,14 +80,18 @@
|
||||||
tanh/1
|
tanh/1
|
||||||
]).
|
]).
|
||||||
|
|
||||||
%% Bits Funcs
|
%% Bitwise operations
|
||||||
-export([
|
-export([
|
||||||
bitnot/1,
|
bitnot/1,
|
||||||
bitand/2,
|
bitand/2,
|
||||||
bitor/2,
|
bitor/2,
|
||||||
bitxor/2,
|
bitxor/2,
|
||||||
bitsl/2,
|
bitsl/2,
|
||||||
bitsr/2,
|
bitsr/2
|
||||||
|
]).
|
||||||
|
|
||||||
|
%% binary and bitstring Funcs
|
||||||
|
-export([
|
||||||
bitsize/1,
|
bitsize/1,
|
||||||
bytesize/1,
|
bytesize/1,
|
||||||
subbits/2,
|
subbits/2,
|
||||||
|
|
Loading…
Reference in New Issue