Sponsored Content
Top Forums Shell Programming and Scripting [Bash]Function returning a boolean Post 302311734 by devtakh on Wednesday 29th of April 2009 11:23:49 AM
Old 04-29-2009
Quote:
Originally Posted by dolphin06
Alright thank you. I have another question though, now that i have my result is it possible to use it in another test in this way :

Code:
function_boolean
bool=$?
while [ $bool ] && [ boolean expression ]; do
  # ...
done

Code:
bool=$?
while [ $bool ]

this will always be true. so you may want to compare like $bol > 0 or $bol =0 or something as you want.


Code:
bool=$?
while [[ $bool > 0 &&  true ]]; do
  # ...
done

cheers,
Devaraj Takhellambam
 

10 More Discussions You Might Find Interesting

1. Programming

string returning function

I have two string returning function in ESQL/C char *segment_name(lbuffer) char *lbuffer; {..... and char *get_bpdvalue(f_name) char *f_name; {...... both declared above main() char *get_bpdvalue(); char *segment_name(); my problem is segment_name works on sprintf and strcpy... (5 Replies)
Discussion started by: jisc
5 Replies

2. Programming

create a thread from a returning function

hi all, my requirement is to create a thread by calling another function. i.e i dont call pthread_create directly from main, but by calling another function (createThd - below ), from main. Example: void *thread_function(void *arg) { /* thread function */ int i; rc =... (3 Replies)
Discussion started by: wolwy_pete
3 Replies

3. Shell Programming and Scripting

returning from a function

Hi all, I am very new to BASH shell programming. I need to return an integer from a function to the caller function. I did this: but it keeps giving me wrong return: Can someone help me out here, please? Thanks (2 Replies)
Discussion started by: alirezan
2 Replies

4. Shell Programming and Scripting

Returning the name of function used

Hi All In my script, I can call on several functions. I have a logging function that is called by any of these functions. What I would like is some way of identifying which function I am using and pass this to the log function as some parameter. Is there some built in command or way of... (3 Replies)
Discussion started by: kingpin2502
3 Replies

5. Programming

Function Returning Pointer

Hi guys. how a functions such fdopen, ... can return pointer? are these functions use static memory(variables)? (6 Replies)
Discussion started by: majid.merkava
6 Replies

6. Programming

Returning local string value from a function in C

Hi, If I have a code like this, what are the potential problems do you see? const char* const retString() { return "hello"; /* string literal */ } My questions are: a) Since the string literal which is already a constant read only data (cannot be... (4 Replies)
Discussion started by: royalibrahim
4 Replies

7. Shell Programming and Scripting

boolean expression in bash

Can someone, please, help me to make this condition valid/accepted in bash? I really cannot. I'm stuck with the brackets... This one tells me: missing `]' if ]; then # NOTIFY ERROR... fi And... I'd also appreciate a link to bash documents that explain these things. All... (2 Replies)
Discussion started by: mamboknave
2 Replies

8. Programming

Malloc function returning NULL

Hi All, I am using malloc function for allocating dynamic memory. When I am using below code on Linux server its working fine, but When I am trying the same code on HP UNIX server its returning NULL. below is a fragment of code in which it is giving problem. tmp = (format_tree... (4 Replies)
Discussion started by: Taher Saifuddin
4 Replies

9. Shell Programming and Scripting

Using boolean expression Bash script

Hi, Im trying to write a Bash script that calculates the least common subnet for two address. Theoretical: I have to change IP from decimal to binary, then apply XNOR on the two IPs. I tried to write this: #!/bin/bash echo "Ebter the first ip" read ip1 echo "Enter the second ip" read... (7 Replies)
Discussion started by: Miron
7 Replies

10. Shell Programming and Scripting

Returning an exit code from a bash function

How to return a exit code from a function and use it in conditional? I tried the following but it does not seem to work. tests.sh: if test ./load.sh ; then echo "0" else echo "1" fi load.sh: return 1; from command line: $ ./tests.sh 0 I was expecting it to output "1"... (17 Replies)
Discussion started by: wolfv
17 Replies
std::decimal(3cxx)														std::decimal(3cxx)

NAME
std::decimal - SYNOPSIS
Classes class decimal128 3.2.4 Class decimal128. class decimal32 3.2.2 Class decimal32. class decimal64 3.2.3 Class decimal64. Functions double decimal128_to_double (decimal128 __d) float decimal128_to_float (decimal128 __d) long double decimal128_to_long_double (decimal128 __d) long long decimal128_to_long_long (decimal128 __d) double decimal32_to_double (decimal32 __d) float decimal32_to_float (decimal32 __d) long double decimal32_to_long_double (decimal32 __d) long long decimal32_to_long_long (decimal32 __d) double decimal64_to_double (decimal64 __d) float decimal64_to_float (decimal64 __d) long double decimal64_to_long_double (decimal64 __d) long long decimal64_to_long_long (decimal64 __d) double decimal_to_double (decimal32 __d) double decimal_to_double (decimal64 __d) double decimal_to_double (decimal128 __d) float decimal_to_float (decimal32 __d) float decimal_to_float (decimal64 __d) float decimal_to_float (decimal128 __d) long double decimal_to_long_double (decimal32 __d) long double decimal_to_long_double (decimal64 __d) long double decimal_to_long_double (decimal128 __d) long long decimal_to_long_long (decimal32 __d) long long decimal_to_long_long (decimal64 __d) long long decimal_to_long_long (decimal128 __d) static decimal128 make_decimal128 (long long __coeff, int __exp) static decimal128 make_decimal128 (unsigned long long __coeff, int __exp) static decimal32 make_decimal32 (long long __coeff, int __exp) static decimal32 make_decimal32 (unsigned long long __coeff, int __exp) static decimal64 make_decimal64 (long long __coeff, int __exp) static decimal64 make_decimal64 (unsigned long long __coeff, int __exp) bool operator!= (decimal32 __lhs, decimal32 __rhs) bool operator!= (decimal32 __lhs, decimal64 __rhs) bool operator!= (decimal32 __lhs, decimal128 __rhs) bool operator!= (decimal32 __lhs, int __rhs) bool operator!= (decimal32 __lhs, unsigned int __rhs) bool operator!= (decimal32 __lhs, long __rhs) bool operator!= (decimal32 __lhs, unsigned long __rhs) bool operator!= (decimal32 __lhs, long long __rhs) bool operator!= (decimal32 __lhs, unsigned long long __rhs) bool operator!= (int __lhs, decimal32 __rhs) bool operator!= (unsigned int __lhs, decimal32 __rhs) bool operator!= (long __lhs, decimal32 __rhs) bool operator!= (unsigned long __lhs, decimal32 __rhs) bool operator!= (long long __lhs, decimal32 __rhs) bool operator!= (unsigned long long __lhs, decimal32 __rhs) bool operator!= (decimal64 __lhs, decimal32 __rhs) bool operator!= (decimal64 __lhs, decimal64 __rhs) bool operator!= (decimal64 __lhs, decimal128 __rhs) bool operator!= (decimal64 __lhs, int __rhs) bool operator!= (decimal64 __lhs, unsigned int __rhs) bool operator!= (decimal64 __lhs, long __rhs) bool operator!= (decimal64 __lhs, unsigned long __rhs) bool operator!= (decimal64 __lhs, long long __rhs) bool operator!= (decimal64 __lhs, unsigned long long __rhs) bool operator!= (int __lhs, decimal64 __rhs) bool operator!= (unsigned int __lhs, decimal64 __rhs) bool operator!= (long __lhs, decimal64 __rhs) bool operator!= (unsigned long __lhs, decimal64 __rhs) bool operator!= (long long __lhs, decimal64 __rhs) bool operator!= (unsigned long long __lhs, decimal64 __rhs) bool operator!= (decimal128 __lhs, decimal32 __rhs) bool operator!= (decimal128 __lhs, decimal64 __rhs) bool operator!= (decimal128 __lhs, decimal128 __rhs) bool operator!= (decimal128 __lhs, int __rhs) bool operator!= (decimal128 __lhs, unsigned int __rhs) bool operator!= (decimal128 __lhs, long __rhs) bool operator!= (decimal128 __lhs, unsigned long __rhs) bool operator!= (decimal128 __lhs, long long __rhs) bool operator!= (decimal128 __lhs, unsigned long long __rhs) bool operator!= (int __lhs, decimal128 __rhs) bool operator!= (unsigned int __lhs, decimal128 __rhs) bool operator!= (long __lhs, decimal128 __rhs) bool operator!= (unsigned long __lhs, decimal128 __rhs) bool operator!= (long long __lhs, decimal128 __rhs) bool operator!= (unsigned long long __lhs, decimal128 __rhs) decimal32 operator* (decimal32 __lhs, decimal32 __rhs) decimal32 operator* (decimal32 __lhs, unsigned int __rhs) decimal32 operator* (decimal32 __lhs, int __rhs) decimal32 operator* (decimal32 __lhs, unsigned long __rhs) decimal32 operator* (decimal32 __lhs, long __rhs) decimal32 operator* (decimal32 __lhs, long long __rhs) decimal32 operator* (decimal32 __lhs, unsigned long long __rhs) decimal32 operator* (int __lhs, decimal32 __rhs) decimal32 operator* (unsigned int __lhs, decimal32 __rhs) decimal32 operator* (long __lhs, decimal32 __rhs) decimal32 operator* (unsigned long __lhs, decimal32 __rhs) decimal32 operator* (long long __lhs, decimal32 __rhs) decimal32 operator* (unsigned long long __lhs, decimal32 __rhs) decimal64 operator* (decimal32 __lhs, decimal64 __rhs) decimal64 operator* (decimal64 __lhs, decimal32 __rhs) decimal64 operator* (decimal64 __lhs, decimal64 __rhs) decimal64 operator* (decimal64 __lhs, int __rhs) decimal64 operator* (decimal64 __lhs, unsigned int __rhs) decimal64 operator* (decimal64 __lhs, long __rhs) decimal64 operator* (decimal64 __lhs, unsigned long __rhs) decimal64 operator* (decimal64 __lhs, long long __rhs) decimal64 operator* (decimal64 __lhs, unsigned long long __rhs) decimal64 operator* (int __lhs, decimal64 __rhs) decimal64 operator* (unsigned int __lhs, decimal64 __rhs) decimal64 operator* (long __lhs, decimal64 __rhs) decimal64 operator* (unsigned long __lhs, decimal64 __rhs) decimal64 operator* (long long __lhs, decimal64 __rhs) decimal64 operator* (unsigned long long __lhs, decimal64 __rhs) decimal128 operator* (decimal32 __lhs, decimal128 __rhs) decimal128 operator* (decimal64 __lhs, decimal128 __rhs) decimal128 operator* (decimal128 __lhs, decimal32 __rhs) decimal128 operator* (decimal128 __lhs, decimal64 __rhs) decimal128 operator* (decimal128 __lhs, decimal128 __rhs) decimal128 operator* (decimal128 __lhs, int __rhs) decimal128 operator* (decimal128 __lhs, unsigned int __rhs) decimal128 operator* (decimal128 __lhs, long __rhs) decimal128 operator* (decimal128 __lhs, unsigned long __rhs) decimal128 operator* (decimal128 __lhs, long long __rhs) decimal128 operator* (decimal128 __lhs, unsigned long long __rhs) decimal128 operator* (int __lhs, decimal128 __rhs) decimal128 operator* (unsigned int __lhs, decimal128 __rhs) decimal128 operator* (long __lhs, decimal128 __rhs) decimal128 operator* (unsigned long __lhs, decimal128 __rhs) decimal128 operator* (long long __lhs, decimal128 __rhs) decimal128 operator* (unsigned long long __lhs, decimal128 __rhs) decimal32 operator+ (decimal32 __rhs) decimal64 operator+ (decimal64 __rhs) decimal128 operator+ (decimal128 __rhs) decimal32 operator+ (decimal32 __lhs, decimal32 __rhs) decimal32 operator+ (decimal32 __lhs, int __rhs) decimal32 operator+ (decimal32 __lhs, unsigned int __rhs) decimal32 operator+ (decimal32 __lhs, long __rhs) decimal32 operator+ (decimal32 __lhs, unsigned long __rhs) decimal32 operator+ (decimal32 __lhs, long long __rhs) decimal32 operator+ (decimal32 __lhs, unsigned long long __rhs) decimal32 operator+ (int __lhs, decimal32 __rhs) decimal32 operator+ (unsigned int __lhs, decimal32 __rhs) decimal32 operator+ (long __lhs, decimal32 __rhs) decimal32 operator+ (unsigned long __lhs, decimal32 __rhs) decimal32 operator+ (long long __lhs, decimal32 __rhs) decimal32 operator+ (unsigned long long __lhs, decimal32 __rhs) decimal64 operator+ (decimal32 __lhs, decimal64 __rhs) decimal64 operator+ (decimal64 __lhs, decimal32 __rhs) decimal64 operator+ (decimal64 __lhs, decimal64 __rhs) decimal64 operator+ (unsigned long long __lhs, decimal64 __rhs) decimal64 operator+ (decimal64 __lhs, int __rhs) decimal64 operator+ (decimal64 __lhs, unsigned int __rhs) decimal64 operator+ (decimal64 __lhs, long __rhs) decimal64 operator+ (decimal64 __lhs, unsigned long __rhs) decimal64 operator+ (decimal64 __lhs, long long __rhs) decimal64 operator+ (decimal64 __lhs, unsigned long long __rhs) decimal64 operator+ (int __lhs, decimal64 __rhs) decimal64 operator+ (unsigned int __lhs, decimal64 __rhs) decimal64 operator+ (long __lhs, decimal64 __rhs) decimal64 operator+ (unsigned long __lhs, decimal64 __rhs) decimal64 operator+ (long long __lhs, decimal64 __rhs) decimal128 operator+ (decimal32 __lhs, decimal128 __rhs) decimal128 operator+ (decimal64 __lhs, decimal128 __rhs) decimal128 operator+ (decimal128 __lhs, decimal32 __rhs) decimal128 operator+ (decimal128 __lhs, decimal64 __rhs) decimal128 operator+ (decimal128 __lhs, decimal128 __rhs) decimal128 operator+ (decimal128 __lhs, int __rhs) decimal128 operator+ (decimal128 __lhs, unsigned int __rhs) decimal128 operator+ (decimal128 __lhs, long __rhs) decimal128 operator+ (decimal128 __lhs, unsigned long __rhs) decimal128 operator+ (decimal128 __lhs, long long __rhs) decimal128 operator+ (decimal128 __lhs, unsigned long long __rhs) decimal128 operator+ (int __lhs, decimal128 __rhs) decimal128 operator+ (unsigned int __lhs, decimal128 __rhs) decimal128 operator+ (long __lhs, decimal128 __rhs) decimal128 operator+ (unsigned long __lhs, decimal128 __rhs) decimal128 operator+ (long long __lhs, decimal128 __rhs) decimal128 operator+ (unsigned long long __lhs, decimal128 __rhs) decimal32 operator- (decimal32 __rhs) decimal64 operator- (decimal64 __rhs) decimal128 operator- (decimal128 __rhs) decimal32 operator- (decimal32 __lhs, decimal32 __rhs) decimal32 operator- (decimal32 __lhs, int __rhs) decimal32 operator- (decimal32 __lhs, unsigned int __rhs) decimal32 operator- (decimal32 __lhs, long __rhs) decimal32 operator- (decimal32 __lhs, unsigned long __rhs) decimal32 operator- (decimal32 __lhs, long long __rhs) decimal32 operator- (decimal32 __lhs, unsigned long long __rhs) decimal32 operator- (int __lhs, decimal32 __rhs) decimal32 operator- (unsigned int __lhs, decimal32 __rhs) decimal32 operator- (long __lhs, decimal32 __rhs) decimal32 operator- (unsigned long __lhs, decimal32 __rhs) decimal32 operator- (long long __lhs, decimal32 __rhs) decimal32 operator- (unsigned long long __lhs, decimal32 __rhs) decimal64 operator- (decimal32 __lhs, decimal64 __rhs) decimal64 operator- (decimal64 __lhs, decimal32 __rhs) decimal64 operator- (decimal64 __lhs, decimal64 __rhs) decimal64 operator- (decimal64 __lhs, int __rhs) decimal64 operator- (decimal64 __lhs, unsigned int __rhs) decimal64 operator- (decimal64 __lhs, long __rhs) decimal64 operator- (decimal64 __lhs, unsigned long __rhs) decimal64 operator- (decimal64 __lhs, long long __rhs) decimal64 operator- (decimal64 __lhs, unsigned long long __rhs) decimal64 operator- (int __lhs, decimal64 __rhs) decimal64 operator- (unsigned int __lhs, decimal64 __rhs) decimal64 operator- (long __lhs, decimal64 __rhs) decimal64 operator- (unsigned long __lhs, decimal64 __rhs) decimal64 operator- (long long __lhs, decimal64 __rhs) decimal64 operator- (unsigned long long __lhs, decimal64 __rhs) decimal128 operator- (decimal32 __lhs, decimal128 __rhs) decimal128 operator- (decimal64 __lhs, decimal128 __rhs) decimal128 operator- (decimal128 __lhs, decimal32 __rhs) decimal128 operator- (decimal128 __lhs, decimal64 __rhs) decimal128 operator- (decimal128 __lhs, decimal128 __rhs) decimal128 operator- (decimal128 __lhs, int __rhs) decimal128 operator- (decimal128 __lhs, unsigned int __rhs) decimal128 operator- (decimal128 __lhs, long __rhs) decimal128 operator- (decimal128 __lhs, unsigned long __rhs) decimal128 operator- (decimal128 __lhs, long long __rhs) decimal128 operator- (decimal128 __lhs, unsigned long long __rhs) decimal128 operator- (int __lhs, decimal128 __rhs) decimal128 operator- (unsigned int __lhs, decimal128 __rhs) decimal128 operator- (long __lhs, decimal128 __rhs) decimal128 operator- (unsigned long __lhs, decimal128 __rhs) decimal128 operator- (long long __lhs, decimal128 __rhs) decimal128 operator- (unsigned long long __lhs, decimal128 __rhs) decimal32 operator/ (decimal32 __lhs, decimal32 __rhs) decimal32 operator/ (decimal32 __lhs, int __rhs) decimal32 operator/ (decimal32 __lhs, unsigned int __rhs) decimal32 operator/ (decimal32 __lhs, long __rhs) decimal32 operator/ (decimal32 __lhs, unsigned long __rhs) decimal32 operator/ (decimal32 __lhs, long long __rhs) decimal32 operator/ (decimal32 __lhs, unsigned long long __rhs) decimal32 operator/ (int __lhs, decimal32 __rhs) decimal32 operator/ (unsigned int __lhs, decimal32 __rhs) decimal32 operator/ (long __lhs, decimal32 __rhs) decimal32 operator/ (unsigned long __lhs, decimal32 __rhs) decimal32 operator/ (long long __lhs, decimal32 __rhs) decimal32 operator/ (unsigned long long __lhs, decimal32 __rhs) decimal64 operator/ (decimal32 __lhs, decimal64 __rhs) decimal64 operator/ (decimal64 __lhs, decimal32 __rhs) decimal64 operator/ (decimal64 __lhs, decimal64 __rhs) decimal64 operator/ (decimal64 __lhs, int __rhs) decimal64 operator/ (decimal64 __lhs, unsigned int __rhs) decimal64 operator/ (decimal64 __lhs, long __rhs) decimal64 operator/ (decimal64 __lhs, unsigned long __rhs) decimal64 operator/ (decimal64 __lhs, long long __rhs) decimal64 operator/ (decimal64 __lhs, unsigned long long __rhs) decimal64 operator/ (int __lhs, decimal64 __rhs) decimal64 operator/ (unsigned int __lhs, decimal64 __rhs) decimal64 operator/ (long __lhs, decimal64 __rhs) decimal64 operator/ (unsigned long __lhs, decimal64 __rhs) decimal64 operator/ (long long __lhs, decimal64 __rhs) decimal64 operator/ (unsigned long long __lhs, decimal64 __rhs) decimal128 operator/ (decimal32 __lhs, decimal128 __rhs) decimal128 operator/ (decimal64 __lhs, decimal128 __rhs) decimal128 operator/ (decimal128 __lhs, decimal32 __rhs) decimal128 operator/ (decimal128 __lhs, decimal64 __rhs) decimal128 operator/ (decimal128 __lhs, decimal128 __rhs) decimal128 operator/ (decimal128 __lhs, long __rhs) decimal128 operator/ (long long __lhs, decimal128 __rhs) decimal128 operator/ (decimal128 __lhs, int __rhs) decimal128 operator/ (decimal128 __lhs, unsigned int __rhs) decimal128 operator/ (decimal128 __lhs, unsigned long __rhs) decimal128 operator/ (decimal128 __lhs, long long __rhs) decimal128 operator/ (decimal128 __lhs, unsigned long long __rhs) decimal128 operator/ (int __lhs, decimal128 __rhs) decimal128 operator/ (unsigned int __lhs, decimal128 __rhs) decimal128 operator/ (long __lhs, decimal128 __rhs) decimal128 operator/ (unsigned long __lhs, decimal128 __rhs) decimal128 operator/ (unsigned long long __lhs, decimal128 __rhs) bool operator< (unsigned long __lhs, decimal32 __rhs) bool operator< (decimal32 __lhs, decimal32 __rhs) bool operator< (decimal32 __lhs, decimal64 __rhs) bool operator< (decimal32 __lhs, decimal128 __rhs) bool operator< (decimal32 __lhs, int __rhs) bool operator< (decimal32 __lhs, long __rhs) bool operator< (decimal32 __lhs, unsigned long __rhs) bool operator< (decimal32 __lhs, long long __rhs) bool operator< (int __lhs, decimal32 __rhs) bool operator< (long __lhs, decimal32 __rhs) bool operator< (decimal32 __lhs, unsigned long long __rhs) bool operator< (long long __lhs, decimal32 __rhs) bool operator< (unsigned long long __lhs, decimal32 __rhs) bool operator< (unsigned int __lhs, decimal32 __rhs) bool operator< (decimal32 __lhs, unsigned int __rhs) bool operator< (long __lhs, decimal64 __rhs) bool operator< (unsigned long __lhs, decimal64 __rhs) bool operator< (decimal64 __lhs, decimal64 __rhs) bool operator< (unsigned long long __lhs, decimal64 __rhs) bool operator< (long long __lhs, decimal64 __rhs) bool operator< (decimal64 __lhs, decimal32 __rhs) bool operator< (decimal64 __lhs, decimal128 __rhs) bool operator< (decimal64 __lhs, unsigned int __rhs) bool operator< (decimal64 __lhs, int __rhs) bool operator< (int __lhs, decimal64 __rhs) bool operator< (unsigned int __lhs, decimal64 __rhs) bool operator< (decimal64 __lhs, long long __rhs) bool operator< (decimal64 __lhs, long __rhs) bool operator< (decimal64 __lhs, unsigned long __rhs) bool operator< (decimal64 __lhs, unsigned long long __rhs) bool operator< (unsigned long __lhs, decimal128 __rhs) bool operator< (decimal128 __lhs, unsigned long long __rhs) bool operator< (decimal128 __lhs, unsigned int __rhs) bool operator< (unsigned long long __lhs, decimal128 __rhs) bool operator< (decimal128 __lhs, decimal32 __rhs) bool operator< (int __lhs, decimal128 __rhs) bool operator< (unsigned int __lhs, decimal128 __rhs) bool operator< (long long __lhs, decimal128 __rhs) bool operator< (long __lhs, decimal128 __rhs) bool operator< (decimal128 __lhs, unsigned long __rhs) bool operator< (decimal128 __lhs, int __rhs) bool operator< (decimal128 __lhs, decimal64 __rhs) bool operator< (decimal128 __lhs, long __rhs) bool operator< (decimal128 __lhs, decimal128 __rhs) bool operator< (decimal128 __lhs, long long __rhs) bool operator== (decimal32 __lhs, unsigned long __rhs) bool operator== (decimal32 __lhs, decimal128 __rhs) bool operator== (decimal32 __lhs, decimal32 __rhs) bool operator== (decimal32 __lhs, decimal64 __rhs) bool operator== (decimal32 __lhs, int __rhs) bool operator== (decimal32 __lhs, unsigned int __rhs) bool operator== (decimal32 __lhs, long __rhs) bool operator== (decimal32 __lhs, long long __rhs) bool operator== (decimal32 __lhs, unsigned long long __rhs) bool operator== (int __lhs, decimal32 __rhs) bool operator== (unsigned int __lhs, decimal32 __rhs) bool operator== (long __lhs, decimal32 __rhs) bool operator== (unsigned long __lhs, decimal32 __rhs) bool operator== (long long __lhs, decimal32 __rhs) bool operator== (unsigned long long __lhs, decimal32 __rhs) bool operator== (unsigned long long __lhs, decimal64 __rhs) bool operator== (long __lhs, decimal64 __rhs) bool operator== (decimal64 __lhs, long long __rhs) bool operator== (decimal64 __lhs, unsigned int __rhs) bool operator== (decimal64 __lhs, decimal128 __rhs) bool operator== (long long __lhs, decimal64 __rhs) bool operator== (decimal64 __lhs, int __rhs) bool operator== (decimal64 __lhs, long __rhs) bool operator== (decimal64 __lhs, decimal32 __rhs) bool operator== (decimal64 __lhs, decimal64 __rhs) bool operator== (decimal64 __lhs, unsigned long __rhs) bool operator== (decimal64 __lhs, unsigned long long __rhs) bool operator== (int __lhs, decimal64 __rhs) bool operator== (unsigned int __lhs, decimal64 __rhs) bool operator== (unsigned long __lhs, decimal64 __rhs) bool operator== (int __lhs, decimal128 __rhs) bool operator== (unsigned int __lhs, decimal128 __rhs) bool operator== (long __lhs, decimal128 __rhs) bool operator== (long long __lhs, decimal128 __rhs) bool operator== (unsigned long long __lhs, decimal128 __rhs) bool operator== (unsigned long __lhs, decimal128 __rhs) bool operator== (decimal128 __lhs, decimal32 __rhs) bool operator== (decimal128 __lhs, unsigned int __rhs) bool operator== (decimal128 __lhs, unsigned long long __rhs) bool operator== (decimal128 __lhs, unsigned long __rhs) bool operator== (decimal128 __lhs, decimal128 __rhs) bool operator== (decimal128 __lhs, long long __rhs) bool operator== (decimal128 __lhs, decimal64 __rhs) bool operator== (decimal128 __lhs, int __rhs) bool operator== (decimal128 __lhs, long __rhs) bool operator> (unsigned int __lhs, decimal32 __rhs) bool operator> (long __lhs, decimal32 __rhs) bool operator> (decimal32 __lhs, decimal128 __rhs) bool operator> (decimal32 __lhs, long long __rhs) bool operator> (decimal32 __lhs, unsigned long long __rhs) bool operator> (decimal32 __lhs, unsigned long __rhs) bool operator> (decimal32 __lhs, decimal32 __rhs) bool operator> (decimal32 __lhs, decimal64 __rhs) bool operator> (decimal32 __lhs, long __rhs) bool operator> (unsigned long __lhs, decimal32 __rhs) bool operator> (unsigned long long __lhs, decimal32 __rhs) bool operator> (long long __lhs, decimal32 __rhs) bool operator> (decimal32 __lhs, unsigned int __rhs) bool operator> (int __lhs, decimal32 __rhs) bool operator> (decimal32 __lhs, int __rhs) bool operator> (decimal64 __lhs, unsigned long long __rhs) bool operator> (decimal64 __lhs, decimal32 __rhs) bool operator> (unsigned long __lhs, decimal64 __rhs) bool operator> (unsigned long long __lhs, decimal64 __rhs) bool operator> (long long __lhs, decimal64 __rhs) bool operator> (int __lhs, decimal64 __rhs) bool operator> (decimal64 __lhs, unsigned int __rhs) bool operator> (decimal64 __lhs, unsigned long __rhs) bool operator> (decimal64 __lhs, decimal128 __rhs) bool operator> (decimal64 __lhs, long __rhs) bool operator> (decimal64 __lhs, long long __rhs) bool operator> (decimal64 __lhs, decimal64 __rhs) bool operator> (decimal64 __lhs, int __rhs) bool operator> (long __lhs, decimal64 __rhs) bool operator> (unsigned int __lhs, decimal64 __rhs) bool operator> (decimal128 __lhs, decimal128 __rhs) bool operator> (int __lhs, decimal128 __rhs) bool operator> (decimal128 __lhs, unsigned long __rhs) bool operator> (unsigned long long __lhs, decimal128 __rhs) bool operator> (decimal128 __lhs, unsigned int __rhs) bool operator> (unsigned int __lhs, decimal128 __rhs) bool operator> (decimal128 __lhs, decimal32 __rhs) bool operator> (decimal128 __lhs, unsigned long long __rhs) bool operator> (decimal128 __lhs, long __rhs) bool operator> (unsigned long __lhs, decimal128 __rhs) bool operator> (decimal128 __lhs, int __rhs) bool operator> (long long __lhs, decimal128 __rhs) bool operator> (long __lhs, decimal128 __rhs) bool operator> (decimal128 __lhs, decimal64 __rhs) bool operator> (decimal128 __lhs, long long __rhs) bool operator>= (long long __lhs, decimal32 __rhs) bool operator>= (unsigned long __lhs, decimal32 __rhs) bool operator>= (decimal32 __lhs, decimal64 __rhs) bool operator>= (decimal32 __lhs, unsigned int __rhs) bool operator>= (decimal32 __lhs, decimal32 __rhs) bool operator>= (decimal32 __lhs, int __rhs) bool operator>= (decimal32 __lhs, decimal128 __rhs) bool operator>= (unsigned long long __lhs, decimal32 __rhs) bool operator>= (unsigned int __lhs, decimal32 __rhs) bool operator>= (long __lhs, decimal32 __rhs) bool operator>= (decimal32 __lhs, unsigned long long __rhs) bool operator>= (decimal32 __lhs, long long __rhs) bool operator>= (int __lhs, decimal32 __rhs) bool operator>= (decimal32 __lhs, long __rhs) bool operator>= (decimal32 __lhs, unsigned long __rhs) bool operator>= (unsigned long long __lhs, decimal64 __rhs) bool operator>= (decimal64 __lhs, unsigned long long __rhs) bool operator>= (decimal64 __lhs, long long __rhs) bool operator>= (decimal64 __lhs, decimal64 __rhs) bool operator>= (decimal64 __lhs, decimal32 __rhs) bool operator>= (decimal64 __lhs, unsigned int __rhs) bool operator>= (decimal64 __lhs, unsigned long __rhs) bool operator>= (decimal64 __lhs, decimal128 __rhs) bool operator>= (long __lhs, decimal64 __rhs) bool operator>= (decimal64 __lhs, long __rhs) bool operator>= (unsigned int __lhs, decimal64 __rhs) bool operator>= (decimal64 __lhs, int __rhs) bool operator>= (unsigned long __lhs, decimal64 __rhs) bool operator>= (int __lhs, decimal64 __rhs) bool operator>= (long long __lhs, decimal64 __rhs) bool operator>= (decimal128 __lhs, int __rhs) bool operator>= (int __lhs, decimal128 __rhs) bool operator>= (decimal128 __lhs, unsigned long __rhs) bool operator>= (long long __lhs, decimal128 __rhs) bool operator>= (decimal128 __lhs, decimal64 __rhs) bool operator>= (unsigned long __lhs, decimal128 __rhs) bool operator>= (decimal128 __lhs, decimal32 __rhs) bool operator>= (decimal128 __lhs, long __rhs) bool operator>= (decimal128 __lhs, unsigned int __rhs) bool operator>= (decimal128 __lhs, long long __rhs) bool operator>= (decimal128 __lhs, decimal128 __rhs) bool operator>= (unsigned int __lhs, decimal128 __rhs) bool operator>= (decimal128 __lhs, unsigned long long __rhs) bool operator>= (long __lhs, decimal128 __rhs) bool operator>= (unsigned long long __lhs, decimal128 __rhs) Detailed Description ISO/IEC TR 24733 Decimal floating-point arithmetic. Function Documentation long long std::decimal::decimal32_to_long_long (decimal32__d) Non-conforming extension: Conversion to integral type. Author Generated automatically by Doxygen for libstdc++ from the source code. libstdc++ Tue Nov 27 2012 std::decimal(3cxx)
All times are GMT -4. The time now is 01:40 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy