chore(emqx_rule_funcs): regroup export functions

This commit is contained in:
Zaiming (Stone) Shi 2023-10-06 12:18:54 +02:00
parent c60915293a
commit 03d8e06ff7
2 changed files with 7 additions and 3 deletions

View File

@ -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]},

View File

@ -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,