| 
    Qore Qorize Module Reference
    0.0.9
    
   | 
 
Functions | |
| string | Qorize::qorize (bool val, string name="var", bool newstyle=False) | 
| create code from the boolean value  More... | |
| string | Qorize::qorize (string val, string name="var", bool newstyle=False) | 
| create code from the string value  More... | |
| string | Qorize::qorize (int val, string name="var", bool newstyle=False) | 
| create code from the integer value  More... | |
| string | Qorize::qorize (float val, string name="var", bool newstyle=False) | 
| create code from the float value  More... | |
| string | Qorize::qorize (number val, string name="var", bool newstyle=False) | 
| create code from the number value  More... | |
| string | Qorize::qorize (date val, string name="var", bool newstyle=False) | 
| create code from the date value  More... | |
| string | Qorize::qorize (binary val, string name="var", bool newstyle=False) | 
| create code from the binary value  More... | |
| string | Qorize::qorize (list val, string name="var", bool newstyle=False) | 
| create code from the list value  More... | |
| string | Qorize::qorize (hash val, string name="var", bool newstyle=False) | 
| create code from the hash value  More... | |
| string | Qorize::qorize (any val, string name="var", bool newstyle=False) | 
| create code from the any value - fallback for NULL and NOTHINGS  More... | |
| string | Qorize::qorizeNamed (hash val, string name="var", bool newstyle=False) | 
| create code from the hash value - with one value per one line  More... | |
create code from the boolean value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the string value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the integer value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the float value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the number value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the date value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
Relative date values (1D, etc.) are converted to short_reldates
| QORIZE-ERROR | in case of error in code generator | 
create code from the binary value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
Binary values are encoded in hexadecimal strings.
| QORIZE-ERROR | in case of error in code generator | 
create code from the list value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the hash value
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the any value - fallback for NULL and NOTHINGS
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator | 
create code from the hash value - with one value per one line
| val | an input value | 
| name | an optional name of the resulting variable | 
| newstyle | an optional argument. True when to use Qore::PO_NEW_STYLE syntax, False otherwise | 
| string | a generated code | 
| QORIZE-ERROR | in case of error in code generator |