<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.gmp.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'intro.gmp.php',
    1 => 'Вступ',
    2 => 'Вступ',
  ),
  'up' => 
  array (
    0 => 'book.gmp.php',
    1 => 'GMP',
  ),
  'prev' => 
  array (
    0 => 'book.gmp.php',
    1 => 'GMP',
  ),
  'next' => 
  array (
    0 => 'gmp.setup.php',
    1 => 'Встановлення/налаштування',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/gmp/book.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="intro.gmp" class="preface">
  <h1 class="title">Вступ</h1>
  <p class="simpara">
   These functions allow for arbitrary-length integers to be worked with using
   the GNU <abbr title="Multiple Precision">MP</abbr> library.
  </p>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    Most GMP functions accept GMP number arguments. These are shown in this
    documentation as <span class="classname"><a href="class.gmp.php" class="classname">GMP</a></span> objects. Most
    of these functions will also accept numeric and string arguments, so long
    as it is possible to convert the latter to a number. Also, if there is a
    more performant function that can operate on the arguments (integers only),
    then it will be used instead (this is done transparently). See also the
    <span class="function"><a href="function.gmp-init.php" class="function">gmp_init()</a></span> function.
   </p>
  </p></blockquote>
  <blockquote class="note"><p><strong class="note">Зауваження</strong>: 
   <p class="para">
    The
    <a href="language.operators.arithmetic.php" class="link">arithmetic</a>,
    <a href="language.operators.bitwise.php" class="link">bitwise</a>, and
    <a href="language.operators.comparison.php" class="link">comparison</a> operators
    may be used with the <span class="classname"><a href="class.gmp.php" class="classname">GMP</a></span> objects returned from
    <span class="function"><a href="function.gmp-init.php" class="function">gmp_init()</a></span> and other GMP functions.
   </p>
  </p></blockquote>
  <div class="warning"><strong class="warning">Увага</strong>
   <p class="simpara">
    Large integers must be specified as strings - otherwise, PHP will coerce
    them to floats, resulting in a loss of precision.
   </p>
  </div>
 </div><?php manual_footer($setup); ?>