<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/book.random.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'de',
  ),
  'this' => 
  array (
    0 => 'enum.random-intervalboundary.php',
    1 => 'Random\\IntervalBoundary',
    2 => 'The Random\\IntervalBoundary Enum',
  ),
  'up' => 
  array (
    0 => 'book.random.php',
    1 => 'Random',
  ),
  'prev' => 
  array (
    0 => 'random-randomizer.unserialize.php',
    1 => 'Random\\Randomizer::__unserialize',
  ),
  'next' => 
  array (
    0 => 'class.random-engine.php',
    1 => 'Random\\Engine',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/random/random.intervalboundary.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="enum.random-intervalboundary" class="reference">
 <h1 class="title">The Random\IntervalBoundary Enum</h1>
 

 <div class="partintro"><p class="verinfo">(PHP 8 &gt;= 8.3.0)</p>
  <div class="section" id="enum.random-intervalboundary.intro">
   <h2 class="title">Einführung</h2>
   <p class="simpara">
    The <span class="enumname"><strong class="enumname">Random\IntervalBoundary</strong></span> enum specifies
    whether an interval includes the boundary values within the set of values
    lying in the interval.
   </p>
  </div>

  <div class="section" id="enum.random-intervalboundary.synopsis">
   <h2 class="title">Übersicht über Aufzählungen</h2>

   <div class="classsynopsis"><div class="classsynopsisinfo">
    <span class="modifier">namespace</span> <strong class="package">Random</strong>;</div>

    <div class="classsynopsisinfo">
     <span class="modifier">enum</span> <strong class="classname"><strong class="enumname">IntervalBoundary</strong></strong><br/>{</div>

     <div class="fieldsynopsis">
          <span class="modifier">case</span>  <span class="classname">ClosedOpen</span>
      ; //
      A right-open interval.
      The lower boundary is included in the interval,
      the upper boundary is not.
     <br><br>
     </div>

     <div class="fieldsynopsis">
          <span class="modifier">case</span>  <span class="classname">ClosedClosed</span>
      ; //
      A closed interval.
      Both boundary values are included in the interval.
     <br><br>
     </div>

     <div class="fieldsynopsis">
          <span class="modifier">case</span>  <span class="classname">OpenClosed</span>
      ; //
      A left-open interval.
      The upper boundary is included in the interval,
      the lower boundary is not.
     <br><br>
     </div>

     <div class="fieldsynopsis">
          <span class="modifier">case</span>  <span class="classname">OpenOpen</span>
      ; //
      An open interval.
      Neither boundary value is included in the interval.
     <br><br>
     </div>
    }
   </div>
  </div>
 </div>
</div>
<?php manual_footer($setup); ?>