0
votes
6answers
33 views
php boolean TRUE / FALSE question?
i cant figure this out.
if i type
function myfunction(){
......
if ...
return TRUE;
if ...
return FALSE;
}
why cant i use it like this:
$result = myfunction();
if …
-1
votes
2answers
65 views
int and boolean error
I have a method that generates and error that a int was expected but found boolean but when I switch it to a boolean it says the same error but reverse int and boolean. Here is my code:
private void …
0
votes
4answers
33 views
Attempt to insert nil
Seems like it should be easy to add a boolean to an NSMutableArray.
Assume toDoArray is intialized as an NSMutableArray. The following:
BOOL checkBoxState = NO;
[toDoArray addObject:checkBoxState];
…
2
votes
6answers
235 views
Windows: How big is a BOOL?
How big (in bits) is a Windows BOOL data type?
Microsoft defines the BOOL data type as:
BOOL Boolean variable (should be TRUE or FALSE).
This type is declared in WinDef.h as follows:
…
2
votes
1answer
41 views
Boolean expressions for a tagging system in SQL
Having this SQL tables for a tagging system:
CREATE TABLE tags (
id SERIAL PRIMARY KEY,
name VARCHAR(100)
);
CREATE INDEX tags_name_idx ON tags(name);
CREATE TABLE tagged_items (
tag_id …
0
votes
2answers
39 views
Boolean fields in MySQL Django Models?
At Django, a boolean field in MySQL is stored as a TINYINT. When I retrieve it, I get 0 or 1. Shouldn't I get False or True? Is there a way to achieve this behaviour?
4
votes
3answers
94 views
Equivalence testing in Haskell
Hi
A quick question that has been bugging me lately. Does Haskell perform all the equivalence test in a function that returns a booleanm, even if one returns a false value? eg:
f a b = ((a+b) == 2) …
0
votes
2answers
49 views
A Method that returns true if the Temperature objects represents a temp below freezing point (JAVA)
I'm trying to write a method named isLowerThanFreezing that returns true if the Temperature object represents a temperature below the freezing point for water (32.0 F, 0.0 C, or 273.15 K), and false …
2
votes
9answers
176 views
How to check if String value is Boolean type in java?
Hi,
Did a little search on this but couldn't find anything usefull.
Point being that if String value is either "true" or "false" the return value should be true. In every other value it should be …
0
votes
1answer
35 views
ROR - My logic works, Boolean value doesn’t post
Hello fellas, My logic tests an inventory supply; and the < operator functions fine. How do I assign boolean values to "instock"? (using POST) In this test, under both conditions the value remains …
1
vote
2answers
52 views
How do I convert a MySQL function result to tinyint(1)
Here's the problem. In MySQL's Connector/NET a TINYINT(1) field properly translates back and forth into a .NET bool value. If I select from a table with a TINYINT(1) column, everything is golden. …
0
votes
4answers
52 views
Simple read vs write boolean variable performance comparison question
What should be the preferred way by programmers:
1) Only Write:
SomeBoolean = True
2) Read but write only if necessary
If Not SomeBoolean Then SomeBoolean = True
0
votes
5answers
144 views
Boolean in Python
Does Python actually contain a Boolean value? I know that you can do:
checker = 1
if checker:
#dostuff
But I'm quite pedantic and enjoy seeing booleans in Java. For instance:
Boolean checker;
…
1
vote
1answer
58 views
Pass a Boolean Ada type in Interfaces.C
I would like to now how to pass a standard Boolean Type in Ada through the Interfaces.C package in order to call a DLL function.
The Interfaces.C package does not contain the Ada Boolean type since …
1
vote
3answers
117 views
Boolean Expression Evaluation in Java
Hey everyone,
Is there a relatively simpler (when compared with writing a parser) way to evaluate boolean expressions in Java?
I do not want to use the JEP library.
I have a String expression …
