1
0
mirror of https://github.com/sasjs/core.git synced 2026-07-23 15:35:29 +00:00

chore: updating all.sas

This commit is contained in:
github-actions
2026-07-18 21:29:50 +00:00
parent a0146a1f91
commit 268b4823ed
+3 -5
View File
@@ -12372,12 +12372,10 @@ run;
/* /*
multiply-by-one for consistent cross-system precision. multiply-by-one for consistent cross-system precision.
Ignore null to protect SAS special missing values. Ignore null to protect SAS special missing values.
Cannot use IFN() as it evaluates both sides
*/ */
&normal = ifn( if missing(&nums[&i]) then &normal = &nums[&i];
missing(&nums[&i]), else &normal = &nums[&i] * 1;
&nums[&i],
&nums[&i] * 1
);
&numtext = put(&normal, binary64.); &numtext = put(&normal, binary64.);
&digest = md5(trim(&numtext)); &digest = md5(trim(&numtext));
substr(&pair, 1, 16) = &state; substr(&pair, 1, 16) = &state;