mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2026-06-08 19:30:20 +00:00
The BasePlus package, version: 3.2.0
The BasePlus package, version: 3.2.0 Fix for leading spaces and `[` and `]` in the %dirsAndFiles()` macro. - File SHA256: `F*F85189F1AF33755A7C9F05673A8094AE3245A21C8B602E02C20170A4DCF73890` for this version - Content SHA256: `C*2216D9556FF51EDABAACBBFED7D30D5B46519083F7217A647A505C2F9FAB3634` for this version
This commit is contained in:
+2
-2
@@ -86,7 +86,7 @@ SHA256 digest for macroArray: F*35A657517CD2B1AB86C4E7C5320B5EDDDFBA9348075AE31D
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
- **BasePlus**\[3.1.5\] adds a bunch of functionalities I am missing in BASE SAS, such as:
|
- **BasePlus**\[3.2.0\] adds a bunch of functionalities I am missing in BASE SAS, such as:
|
||||||
```sas
|
```sas
|
||||||
call arrMissToRight(myArray);
|
call arrMissToRight(myArray);
|
||||||
call arrFillMiss(17, myArray);
|
call arrFillMiss(17, myArray);
|
||||||
@@ -120,7 +120,7 @@ format x bool.;
|
|||||||
|
|
||||||
%workLib(ABC)
|
%workLib(ABC)
|
||||||
```
|
```
|
||||||
SHA256 digest for BasePlus: F*2308959251D1BF9259B693EB8C60D30D24D5D7E06AED05A03639A7C7E458658F
|
SHA256 digest for BasePlus: F*F85189F1AF33755A7C9F05673A8094AE3245A21C8B602E02C20170A4DCF73890
|
||||||
|
|
||||||
[Documentation for BasePlus](https://github.com/SASPAC/baseplus/blob/main/baseplus.md "Documentation for BasePlus")
|
[Documentation for BasePlus](https://github.com/SASPAC/baseplus/blob/main/baseplus.md "Documentation for BasePlus")
|
||||||
|
|
||||||
|
|||||||
@@ -1,3 +1,6 @@
|
|||||||
|
/* 20260528 */
|
||||||
|
BasePlus: F*F85189F1AF33755A7C9F05673A8094AE3245A21C8B602E02C20170A4DCF73890
|
||||||
|
|
||||||
/* 20260512 */
|
/* 20260512 */
|
||||||
BasePlus: F*2308959251D1BF9259B693EB8C60D30D24D5D7E06AED05A03639A7C7E458658F
|
BasePlus: F*2308959251D1BF9259B693EB8C60D30D24D5D7E06AED05A03639A7C7E458658F
|
||||||
|
|
||||||
|
|||||||
+11
-8
@@ -9,17 +9,17 @@
|
|||||||
### Version information:
|
### Version information:
|
||||||
|
|
||||||
- Package: BasePlus
|
- Package: BasePlus
|
||||||
- Version: 3.1.5
|
- Version: 3.2.0
|
||||||
- Generated: 2026-05-12T16:34:34
|
- Generated: 2026-05-28T12:00:14
|
||||||
- Author(s): Bartosz Jablonski (yabwon@gmail.com), contributors are Quentin McMullen (qmcmullen@gmail.com) and Ryo Nakaya (nakaya.ryou@gmail.com)
|
- Author(s): Bartosz Jablonski (yabwon@gmail.com), contributors are Quentin McMullen (qmcmullen@gmail.com) and Ryo Nakaya (nakaya.ryou@gmail.com)
|
||||||
- Maintainer(s): Bartosz Jablonski (yabwon@gmail.com)
|
- Maintainer(s): Bartosz Jablonski (yabwon@gmail.com)
|
||||||
- License: MIT
|
- License: MIT
|
||||||
- File SHA256: `F*2308959251D1BF9259B693EB8C60D30D24D5D7E06AED05A03639A7C7E458658F` for this version
|
- File SHA256: `F*F85189F1AF33755A7C9F05673A8094AE3245A21C8B602E02C20170A4DCF73890` for this version
|
||||||
- Content SHA256: `C*9CA3E5365260C4D439592CCD16311BE30C82DE03AFC80BC2EA6B9677B3F7A8CE` for this version
|
- Content SHA256: `C*2216D9556FF51EDABAACBBFED7D30D5B46519083F7217A647A505C2F9FAB3634` for this version
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
# The `BasePlus` package, version: `3.1.5`;
|
# The `BasePlus` package, version: `3.2.0`;
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
@@ -407,7 +407,7 @@ localization (only if additional content was deployed during the installation pr
|
|||||||
|
|
||||||
---------------------------------------------------------------------
|
---------------------------------------------------------------------
|
||||||
|
|
||||||
*SAS package generated by SAS Package Framework, version `20260411`,*
|
*SAS package generated by SAS Package Framework, version `20260515`,*
|
||||||
*under `WIN`(`X64_10PRO`) operating system,*
|
*under `WIN`(`X64_10PRO`) operating system,*
|
||||||
*using SAS release: `9.04.01M9P06052025`.*
|
*using SAS release: `9.04.01M9P06052025`.*
|
||||||
|
|
||||||
@@ -878,8 +878,11 @@ The basic syntax is the following, the `<...>` means optional parameters:
|
|||||||
|
|
||||||
* `backslashSens=0` - *Optional*, if not zero then it indicates
|
* `backslashSens=0` - *Optional*, if not zero then it indicates
|
||||||
that backslash(`\`) symbol in files and dirs
|
that backslash(`\`) symbol in files and dirs
|
||||||
names is detectable under Linux. Accepted
|
names is detectable under Linux. Additionally,
|
||||||
values: `0` and `1`. Ignored under Windows.
|
for a square-bracket (`[` or `]`), it turns
|
||||||
|
off their special meaning under Linux.
|
||||||
|
Accepted values: `0` and `1`.
|
||||||
|
Ignored under Windows.
|
||||||
|
|
||||||
|
|
||||||
### EXAMPLES AND USECASES: ####################################################
|
### EXAMPLES AND USECASES: ####################################################
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user