"real" "division" Operation

This section describes 'real' 'division' operation

The "real" "division" operation is provided through the real.divide() function, which has the following syntax:

real.divide(a, b)

Parameters:
   a - First "real" data object
   b - Second "real" data object
   
Return: 
   Returns a new "real" data object representing 
   resulting value of "a divided by b".
   
Errors:
   Throws "ZeroDivision" error code, if b is 0.

   Throws "realOverflow" error code, if the result is too "big" 
   to be stored in a "real" data object.

   Throws "realUnderflow" error code, if the result is too "small" 
   to be stored in a "real" data object.

The "real" "division" operation can be expressed in the "/" operator format:

a / b; # alias of the following function call
real.divide(a, b); 

Table of Contents

 About This Book

 Introduction of H Language

 Syntax

 Data Types

 Variables

 Expressions

 Statements

 "boolean" Data Type

 "integer" Data Type

 "string" Data Type

"real" Data Type

 What Is "real" Data Type

 "real" Literals

 Constructor Function: real()

 "real" "addition" Operation

 "real" "subtraction" Operation

 "real" "multiplication" Operation

"real" "division" Operation

 "real" "exponentiation" Operation

 "real" "negation" Operation

 "real" "absolute" Operation

 "real" "greater-than" Operation

 "real" "less-than" Operation

 "real" "equal-to" Operation

 "real" "not-equal-to" Operation

 "real" "greater-than-or-equal-to" Operation

 "real" "less-than-or-equal-to" Operation

 "array" Data Type

 Source Code Packages

 Classes and Objects

 Object Oriented Programming

 Inheritance - Object Attachments

 Encapsulation - Private Members

 References

 Full Version in PDF/ePUB