I am curious if I can pass macros into another macro like this:
{% macro my_macro(a, b, another_macro) %}
...
{{ another_macro(a,b) }}
...
{% endmacro %}
BONUS: If dbt's framework can allow it am able to how can I pass arguments to it?
In R it would look like
my_callable_function <- function(another_function, ...) {
...
another_function(...)
...
}