GALGAS_bool GALGAS_timer::getter_isRunning (UNUSED_LOCATION_ARGS) const { GALGAS_bool result ; if (isValid ()) { result = GALGAS_bool (mTimer.isRunning ()) ; } return result ; }
GALGAS_bool GALGAS_bool::constructor_default (UNUSED_LOCATION_ARGS) { return GALGAS_bool (false) ; }
GALGAS_bool GALGAS_char::getter_isUnicodeNumber (UNUSED_LOCATION_ARGS) const { return GALGAS_bool (isUnicodeNumber (mCharValue)) ; }
GALGAS_bool GALGAS_application::constructor_verboseOutput (UNUSED_LOCATION_ARGS) { return GALGAS_bool (verboseOutput ()) ; }
GALGAS_bool GALGAS_char::getter_isUnicodePunctuation (UNUSED_LOCATION_ARGS) const { return GALGAS_bool (isUnicodePunctuation (mCharValue)) ; }
GALGAS_bool GALGAS_char::getter_isUnicodeSymbol (UNUSED_LOCATION_ARGS) const { return GALGAS_bool (isUnicodeCommand (mCharValue)) ; }
GALGAS_bool GALGAS_char::getter_isxdigit (UNUSED_LOCATION_ARGS) const { return GALGAS_bool (((UNICODE_VALUE (mCharValue) >= '0') && (UNICODE_VALUE (mCharValue) <= '9')) || ((UNICODE_VALUE (mCharValue) >= 'a') && (UNICODE_VALUE (mCharValue) <= 'f')) || ((UNICODE_VALUE (mCharValue) >= 'A') && (UNICODE_VALUE (mCharValue) <= 'F'))) ; }
GALGAS_bool GALGAS_char::getter_isupper (UNUSED_LOCATION_ARGS) const { return GALGAS_bool (((UNICODE_VALUE (mCharValue) >= 'A') && (UNICODE_VALUE (mCharValue) <= 'Z'))) ; }
GALGAS_bool GALGAS_char::getter_iscntrl (UNUSED_LOCATION_ARGS) const { return GALGAS_bool (((UNICODE_VALUE (mCharValue) >= 1) && (UNICODE_VALUE (mCharValue) <= 31)) || (UNICODE_VALUE (mCharValue) == 127)) ; }