Logical Functions

Functions

boolean arbb::operator! (const boolean &value)
 If value is true, returns false.
boolean arbb::operator&& (const boolean &a, const boolean &b)
 Returns the logical and of a and b.
boolean arbb::operator&& (const boolean &a, const uncaptured< boolean >::type &b)
 Returns the logical and of a and b.
boolean arbb::operator&& (const uncaptured< boolean >::type &a, const boolean &b)
 Returns the logical and of a and b.
boolean arbb::operator|| (const boolean &a, const boolean &b)
 Returns the logical or of a and b.
boolean arbb::operator|| (const boolean &a, const uncaptured< boolean >::type &b)
 Returns the logical or of a and b.
boolean arbb::operator|| (const uncaptured< boolean >::type &a, const boolean &b)
 Returns the logical or of a and b.

Function Documentation

boolean arbb::operator! ( const boolean &  value  )  [inline]

If value is true, returns false.

Otherwise, returns true. This function only applies to instances of arbb::boolean.

Parameters:

value The boolean value whose boolean complement is returned.

Definition at line 737 of file scalar_funcs.hpp.

boolean arbb::operator&& ( const boolean &  a,
const boolean &  b 
) [inline]

Returns the logical and of a and b.

This function only applies to instances of arbb::boolean.

Parameters:

a The first boolean to and with.
b The second boolean to and with.

Definition at line 2094 of file scalar_funcs.hpp.

boolean arbb::operator&& ( const boolean &  a,
const uncaptured< boolean >::type &  b 
) [inline]

Returns the logical and of a and b.

This function only applies to instances of arbb::boolean.

Parameters:

a The first boolean to and with.
b The second boolean to and with.

Definition at line 2118 of file scalar_funcs.hpp.

boolean arbb::operator&& ( const uncaptured< boolean >::type &  a,
const boolean &  b 
) [inline]

Returns the logical and of a and b.

This function only applies to instances of arbb::boolean.

Parameters:

a The first boolean to and with.
b The second boolean to and with.

Definition at line 2143 of file scalar_funcs.hpp.

boolean arbb::operator|| ( const boolean &  a,
const boolean &  b 
) [inline]

Returns the logical or of a and b.

This function only applies to instances of arbb::boolean.

Parameters:

a The first boolean to or with.
b The second boolean to or with.

Definition at line 2169 of file scalar_funcs.hpp.

boolean arbb::operator|| ( const boolean &  a,
const uncaptured< boolean >::type &  b 
) [inline]

Returns the logical or of a and b.

This function only applies to instances of arbb::boolean.

Parameters:

a The first boolean to or with.
b The second boolean to or with.

Definition at line 2193 of file scalar_funcs.hpp.

boolean arbb::operator|| ( const uncaptured< boolean >::type &  a,
const boolean &  b 
) [inline]

Returns the logical or of a and b.

This function only applies to instances of arbb::boolean.

Parameters:

a The first boolean to or with.
b The second boolean to or with.

Definition at line 2218 of file scalar_funcs.hpp.

Submit feedback on this help topic

Copyright © 2010, Intel Corporation. All rights reserved.