1234567891011121314151617181920212223242526272829303132333435 |
- -define(TAB, gproc).
- -type type() :: n | p | c | a.
- -type scope() :: l | g.
- -type context() :: {scope(),type()} | type().
- -type sel_type() :: n | p | c | a |
- names | props | counters | aggr_counters.
- -type sel_var() :: '_' | atom().
- -type keypat() :: {sel_type() | sel_var(), l | g | sel_var(), any()}.
- -type pidpat() :: pid() | sel_var().
- -type headpat() :: {keypat(),pidpat(),any()}.
- -type key() :: {type(), scope(), any()}.
- -type sel_pattern() :: [{headpat(), list(), list()}].
|