1
0
mirror of https://github.com/sasjs/core.git synced 2026-01-16 13:00:05 +00:00

feat(*): recreate library as scoped package

This commit is contained in:
Krishna Acondy
2020-07-07 21:27:24 +01:00
commit 8beb0048a3
144 changed files with 30478 additions and 0 deletions

26
base/mf_nobs.sas Executable file
View File

@@ -0,0 +1,26 @@
/**
@file
@brief Returns number of logical (undeleted) observations.
@details Beware - will not work on external database tables!
Is just a convenience macro for calling <code> %mf_getattrn()</code>.
%put Number of observations=%mf_nobs(sashelp.class);
<h4> Dependencies </h4>
@li mf_getattrn.sas
@param libds library.dataset
@return output returns result of the attrn value supplied, or log message
if error.
@version 9.2
@author Allan Bowe
**/
%macro mf_nobs(libds
)/*/STORE SOURCE*/;
%mf_getattrn(&libds,NLOBS)
%mend;