5 Commits
1.0 ... 1.0.4

Author SHA1 Message Date
Bartosz Jablonski
cf8a94fb25 The macroArray package [ver. 1.0.4]
The macroArray package [ver. 1.0.4]

Package regenerated with the latest version of the SAS Packages Framework.
2022-12-15 17:56:34 +01:00
Bartosz Jablonski
613569560f The macroArray package [ver. 1.0.3]
The macroArray package [ver. 1.0.3]

Package regenerated with the latest version of the SAS Packages Framework.
2022-11-27 00:02:00 +01:00
Bartosz Jablonski
bf2fa01d1d macroArray [1.0.2]
macroArray [1.0.2]

Package regenerated with the latest version of the SAS Packages Framework.
2022-11-21 14:39:41 +01:00
Bart Jablonski
a7ef089a07 Create README.md 2022-11-16 11:26:14 +01:00
Bartosz Jablonski
96267fd15a The macroArray package [ver. 1.0.1]
The macroArray package [ver. 1.0.1]

Package regenerated with the latest version of the framework (20221112).
2022-11-12 17:37:25 +01:00
7 changed files with 33 additions and 3 deletions

30
README.md Normal file
View File

@@ -0,0 +1,30 @@
### `macroArray` - Macroarrays for macro codes
---
The **macroArray** package implements an array, a hash table, and a dictionary concept in macrolanguage. For example:
```sas
%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`: 8584C249C308B5E8B620ED5F695BC58CD426172FB2EACD5FF9C6899F9DE2B470
[**Documentation for macroArray**](./macroarray.md "Documentation for macroArray")

BIN
hist/1.0.1/macroarray.zip Normal file

Binary file not shown.

BIN
hist/1.0.2/macroarray.zip Normal file

Binary file not shown.

BIN
hist/1.0.3/macroarray.zip Normal file

Binary file not shown.

BIN
hist/1.0.4/macroarray.zip Normal file

Binary file not shown.

View File

@@ -19,7 +19,7 @@
---
# The macroArray package [ver. 1.0] <a name="macroarray-package"></a> ###############################################
# The macroArray package [ver. 1.0.4] <a name="macroarray-package"></a> ###############################################
The **macroArray** package implements a macro array facility:
- `%array()`,
@@ -75,10 +75,10 @@ Package contains:
Required SAS Components:
*Base SAS Software*
*SAS package generated by generatePackage, version 20220830.*
*SAS package generated by generatePackage, version 20221215*
The SHA256 hash digest for package macroArray:
`ED12BC96F8A4E9E7C4D651EC1E15479DB9B55D98B274B63C507ED842081F7AB7`
`8584C249C308B5E8B620ED5F695BC58CD426172FB2EACD5FF9C6899F9DE2B470`
---
# Content description ############################################################################################

Binary file not shown.