Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revision Previous revision
Next revision
Previous revision
boolean_value_type [2013/08/06 23:21]
admin [Automatic Conversions]
boolean_value_type [2015/10/11 23:03] (current)
admin
Line 1: Line 1:
-====== ​Bool Type ======+====== ​Boolean Value Type ======
  
 A [[wp>​Boolean_value|boolean]] denotes two possible values: True (meaning yes) and False (meaning no). A [[wp>​Boolean_value|boolean]] denotes two possible values: True (meaning yes) and False (meaning no).
- 
-===== Automatic Conversions ===== 
- 
-  * **Can be converted from**: [[Double Type]], [[Int Type]], [[Non Negative Int Type]] and [[Positive Int Type]]. Non-zero values are converted to True and zero values are converted to False. 
- 
-  * **Can be converted to**: [[Double Type]], [[Int Type]], [[Non Negative Int Type]], [[Positive Int Type]] and [[Null Value Type]]. True is converted to one and False to zero. 
  
 ===== GUI Editor ===== ===== GUI Editor =====
Line 17: Line 11:
 ===== EGO Script ===== ===== EGO Script =====
  
-Boolean values can be denoted using several ​diferente ​representations:​+Boolean values can be denoted using several ​different ​representations:​
  
 ^ Value ^ Representation ^ ^ Value ^ Representation ^
Line 24: Line 18:
  
 By default, Dinamica EGO writes boolean values using the ''​.yes''/''​.no''​ representation. By default, Dinamica EGO writes boolean values using the ''​.yes''/''​.no''​ representation.
 +
 +===== Automatic Conversions =====
 +
 +  * **Converted from**: [[Real Value Type]], [[Integer Value Type]], [[Non Negative Integer Value Type]] and [[Positive Integer Value Type]]: non-zero values are converted to True and zero values are converted to False.
 +
 +  * **Converted to**: [[Real Value Type]], [[Integer Value Type]], [[Non Negative Integer Value Type]], [[Positive Integer Value Type]] and [[Null Value Type]]: True is converted to one and False to zero. [[String Type]]: True is converted to "​true"​ and False to "​false"​. ​
 +