8 Commits
1.0 ... 1.0.6

Author SHA1 Message Date
Bart Jablonski
5c4ff371bf The macroArray package [ver. 1.0.6]
The macroArray package [ver. 1.0.6]

Package regenerated with the latest version of the SAS Packages Framework (20230904).

SHA256 digest for the latest version of `macroArray`: F*4FAAEE7DF2854EA31933AE017A89C1615C7291A66A07CCE345041EB0D587ED4E
2023-09-04 16:32:03 +02:00
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
Bart Jablonski
efbeae5a36 Update README.md 2022-12-15 22:45:51 +01:00
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
10 changed files with 2232 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`: F*4FAAEE7DF2854EA31933AE017A89C1615C7291A66A07CCE345041EB0D587ED4E
[**Documentation for macroArray**](./macroarray.md "Documentation for macroArray")
To work with a package use the [**SAS Packages Framework**](https://github.com/yabwon/SAS_PACKAGES/blob/main/README.md "SPFinit").

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.

BIN
hist/1.0.5/macroarray.zip Normal file

Binary file not shown.

2199
hist/1.0.6/macroarray.md Normal file

File diff suppressed because it is too large Load Diff

BIN
hist/1.0.6/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.6] <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 20230905*
The SHA256 hash digest for package macroArray:
`ED12BC96F8A4E9E7C4D651EC1E15479DB9B55D98B274B63C507ED842081F7AB7`
`F*4FAAEE7DF2854EA31933AE017A89C1615C7291A66A07CCE345041EB0D587ED4E`
---
# Content description ############################################################################################

Binary file not shown.