Overview

Namespaces

  • BN
    • Collections
    • Compiler
      • Grammar
      • Parser
        • Operator
        • Token
      • Postfix
        • Operands
        • Operator
        • Token
      • Scanner
        • Converter
      • Token
  • Demo
  • None

Classes

  • AtLeastN
  • FixedCount
  • Operands
  • OperandsSummary
  • Overview
  • Namespace
  • Class
  • Tree
 1: <?php
 2: 
 3: namespace BN\Compiler\Postfix\Operands;
 4: 
 5: class OperandsSummary
 6: {
 7:     /** @var bool */
 8:     public $areOperandsValid;
 9:     /** @var array */
10:     public $operands;
11:     /** @var int */
12:     public $expectedCount;
13: 
14:     public function countOperands()
15:     {
16:         return count($this->operands);
17:     }
18: }
19: 
BN-PHP - Big Number data type for PHP API documentation generated by ApiGen 2.8.0