Files
macroarray/README.md
Bart Jablonski a211d86642 The macroArray package [ver. 1.0.5]
The macroArray package [ver. 1.0.5]

Package regenerated with the latest version of the SAS Packages Framework (20230411).
2023-04-11 18:37:56 +02:00

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*85E3BE4D163AC5223B6EC9D3C25C46564A656E3830998B4555A963180D767160

Documentation for macroArray

To work with a package use the SAS Packages Framework.