Login   Register  
PHP Classes
elePHPant
Icontem

File: src/eMacros/Runtime/Arithmetic/Subtraction.php

Recommend this page to a friend!
Stumble It! Stumble It! Bookmark in del.icio.us Bookmark in del.icio.us
  Classes of Emmanuel Antico  >  eMacros  >  src/eMacros/Runtime/Arithmetic/Subtraction.php  >  Download  
File: src/eMacros/Runtime/Arithmetic/Subtraction.php
Role: Class source
Content type: text/plain
Description: Class source
Class: eMacros
PHP LISP language interpreter
Author: By
Last change:
Date: 2014-01-13 05:23
Size: 834 bytes
 

Contents

Class file image Download
<?php
namespace eMacros\Runtime\Arithmetic;

use 
eMacros\Runtime\GenericFunction;

class 
Subtraction extends GenericFunction {
    
/**
     * Obtains the result of subtracting the first element on a list by the rest of the elements.
     * Usage: (- 120 30 50)
     * Returns: number
     * (non-PHPdoc)
     * @see \eMacros\Runtime\GenericFunction::execute()
     */
    
public function execute(array $arguments) {
        if (empty(
$arguments)) {
            throw new \
InvalidArgumentException("Subtraction: At least 1 argument is required");
        }
        
        
//emulate CLISP: (- 3) = -3
        
if (!isset($arguments[1])) {
            return -
$arguments[0];
        }
        
        
//obtain first argument
        
$result array_shift($arguments);
        
        foreach (
$arguments as $value) {
            
$result -= $value;
        }

        return 
$result;
    }
}