PDL::Core::Dev - PDL development module


PDL documentation  | view source Contained in the PDL distribution.

Index


NAME

Top

PDL::Core::Dev - PDL development module

DESCRIPTION

Top

This module encapsulates most of the stuff useful for PDL development and is often used from within Makefile.PL's.

SYNOPSIS

Top

   use PDL::Core::Dev;

FUNCTIONS

Top

isbigendian

Is the machine big or little endian?

  print "Your machins is big endian.\n" if isbigendian();

returns 1 if the machine is big endian, 0 if little endian, or dies if neither. It uses the byteorder element of perl's %Config array.

   my $retval = isbigendian();


PDL documentation  | view source Contained in the PDL distribution.