1
vote
3answers
92 views
Boolean Concatenation? What’s the real term for this pattern?
Please consider the following function body:
var isValidated = true;
$(selector1).each(function(){
//do validation with local f()...
isValidated = f() && isValidat …
0
votes
4answers
57 views
Two member enumeration vs. boolean value
This question has in the back of my mind for some time, sorry if it appears subjective. There are some disadvantages in using bool in public properties and constructors for data ob …
1
vote
2answers
54 views
PLT Scheme noob: Boolean and/or aren’t procedures?
I'm trying to make a truth-table generator for a digital electronics course because that's how I have fun in my spare time and don't judge me.
Anywho, I figured I'd have a hash wi …
5
votes
8answers
336 views
Why/When to use (!!p) instead of (p != NULL)
In the following code, what is the benefit of using (!!p) instead of (p != NULL)?
AClass *p = getInstanceOfAClass();
if( !!p )
// do something
else
// do something without ha …
1
vote
3answers
62 views
Why must I assign the result of PHP’s end() array function to a variable to operate on the result?
I've tried to delete the possibly empty last entry of an array as follows but I get the error: "Can't use function return value in write context":
if (empty(end($crontabEntryLis …
5
votes
6answers
234 views
Python things which are neither True nor False
I just found this :
a = (None,)
print (a is True)
print (a is False)
print (a == True)
print (a == False)
print (a == None)
print (a is None)
if a : print "hello"
if not a : print …
1
vote
1answer
18 views
JSF boolean output
Hi,
Is there a way in JSF to output some text based on a boolean?
For example:
h:outputText value="Black" rendered="#{bean.isBlack}"
The bean property is called isBlack not getIsB …
0
votes
2answers
134 views
Evaluation of boolean expressions in Python
What truth value do objects evaluate to in Python?
Related Questions
Boolean Value of Objects in Python: Discussion about overriding the way it is evaluated
0
votes
4answers
98 views
Bash Can not get IF to work like I want to
I need to understand bash if expressions. Sure, I've used Google. I know that it goes something like this:
if [ expr operator expr ]
then
doSomeThing
fi
However, I understand t …
0
votes
2answers
31 views
Suppressing Booleans on Crystal Reports
Simple question, yet i haven't found the answer.
Anybody here know how to suppress a boolean field from displaying a "False" ?
For example in my report, I have fields that say …
26
votes
41answers
3k views
Should I use `!IsGood` or `IsGood == false`?
I keep seeing code that does checks like this
if (IsGood == false)
{
DoSomething();
}
or this
if (IsGood == true)
{
DoSomething();
}
I hate this syntax, and always use …
35
votes
22answers
1k views
Are booleans as method arguments unacceptable?
A colleague of mine states that booleans as method arguments are not acceptable. They shall be replaced by enumerations. At first I did not see any benefit, but he gave me an examp …
13
votes
19answers
883 views
boolean parameters — do they smell?
I just found a bug caused by a boolean parameter... the caller thought it was controlling one thing but it was really controlling something else. So do boolean parameters smell in …
2
votes
4answers
105 views
uninterlace bits from 16 bit value
I have a 16 bit value with its bits "interlaced".
I want to get an array of 8 items (values 0 to 3) that stores the bits in this order:
item 0: bits 7 and 15
item 1: bits 6 and …
0
votes
5answers
47 views
Return DataTable based on boolean param
Hi All,
I have a table that has a field, "IsActive," that indicates whether a record has been "deleted" or not.
Currently, I retrieve this info like so:
public DataTable Get …
