mirror of
https://github.com/SASPAC/macroarray.git
synced 2026-01-14 16:10:05 +00:00
The macroArray package [ver. 1.3.0] Changes: - Four new parameters in the `%do_over()` macro: `check`, `rephrase`, `trigger`, and `unq`. - Minor updates in the `%array()` macro. - Documentation updated and cleaned. SHA256 digest for the latest version macroArray: F*C6C2B5507B6590365222FC764076E294CCE3AAE99971D9CAA942F8BAEBEFAE24
811 B
811 B
macroArray - Macroarrays for macro codes
The macroArray package implements an array, a hash table, and a dictionary concept in macrolanguage. For example:
%array(ABC[17] (111:127), macarray=Y);
%macro test();
%do i = 1 %to 17;
%put &i.) %ABC(&i.);
%end;
%mend;
%test()
%let %ABC(13,i) = 99999; /* i = insert */
%do_over(ABC, phrase=%nrstr(
%put &_i_.%) %ABC(&_i_.);
),
which = 1:H:2
);
SHA256 digest for the latest version of macroArray: F*C6C2B5507B6590365222FC764076E294CCE3AAE99971D9CAA942F8BAEBEFAE24
To work with a package use the SAS Packages Framework.