0
votes
5answers
48 views
Convention result and code error C++ int foo (…)
In Linux for example when i use batch if error code is 0 thats good, but what is the convention in C++ ?
when int (or bool) is equal to one we say that's true, but what must be the return of such …
0
votes
2answers
28 views
functions that produce lists of lists in scheme
Hi,
I'm trying to use scheme to write a function f that takes a number n and a function g and returns a list of lists of length n, but according with booleans according to the pattern indicated by …
0
votes
2answers
37 views
Evaluation of PL/SQL boolean variables in Oracle Forms
Suppose I have a BOOLEAN variable within a PL/SQL block in an Oracle Form:
DECLARE
is_viewable BOOLEAN;
BEGIN
is_viewable := ...;
IF NOT is_viewable THEN
raise_my_error(); // pseudo-code
…
2
votes
3answers
73 views
Erlang compound boolean expression
I am still finding my feet with erlang, and I read the documentation about using "and", "or" operators, but why is the following not evaluating?
X = 15,
Y = 20,
X==15 and Y==20.
I am expecting for …
0
votes
4answers
60 views
Using a boolean variable in while statement
A newbie question. I have the following piece of Java code:
import acm.program.*;
import java.awt.Color;
import acm.graphics.*;
public class ufo extends GraphicsProgram{
private GRect …
-1
votes
2answers
77 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
6answers
49 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 …
2
votes
6answers
257 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:
…
0
votes
3answers
35 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
1answer
45 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 …
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) …
2
votes
9answers
189 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
5answers
149 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
2answers
60 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
53 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
