logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

PDL::LiteF - minimum PDL module function loader

Description

       Loads the smallest possible set of modules for PDL to work, making the functions available in the current
       namespace. If you want something even smaller see the PDL::Lite module.

       Note that unlike PDL, this does not load PDL::Math or PDL::MatrixOps, nor any IO modules.

perl v5.40.1                                       2025-03-27                                    PDL::LiteF(3pm)

Name

       PDL::LiteF - minimum PDL module function loader

Synopsis

        use PDL::LiteF; # Is equivalent to the following:

          use PDL::Core;
          use PDL::Ops;
          use PDL::Primitive;
          use PDL::Ufunc;
          use PDL::Basic;
          use PDL::Slices;
          use PDL::Bad;

See Also