active questions tagged boolean - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T02:29:26Z http://stackoverflow.com/feeds/tag/boolean http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1778948/boolean-fields-in-mysql-django-models 0 Boolean fields in MySQL Django Models? Juanjo Conti 2009-11-22T15:02:36Z 2009-11-25T18:19:43Z <p>At Django, <a href="http://docs.djangoproject.com/en/dev/ref/models/fields/" rel="nofollow">a boolean field in MySQL is stored as a TINYINT</a>. When I retrieve it, I get 0 or 1. Shouldn't I get False or True? Is there a way to achieve this behaviour?</p> http://stackoverflow.com/questions/1778919/equivalence-testing-in-haskell 3 Equivalence testing in Haskell Jonno_FTW 2009-11-22T14:52:21Z 2009-11-22T21:36:55Z <p>Hi</p> <p>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:</p> <pre><code>f a b = ((a+b) == 2) &amp;&amp; ((a*b) == 2) </code></pre> <p>If the first test returns false, will it perform the second test after the <code>&amp;&amp;</code>? Or is Haskell lazy enough to not do it and move on?</p> http://stackoverflow.com/questions/1759250/how-do-i-convert-a-mysql-function-result-to-tinyint1 1 How do I convert a MySQL function result to tinyint(1) Kasey Speakman 2009-11-18T21:37:48Z 2009-11-20T15:39:40Z <p>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. However, when you use built-in MySQL v5.0 functions like:</p> <pre><code>SELECT (3 BETWEEN 2 AND 4) AS oddly_not_boolean; </code></pre> <p>The actual return type from the database registers this field as INT or BIGINT, which Connector/.NET obviously doesn't convert to bool. MySQL CAST and CONVERT do not allow casting to TINYINT(1).</p> <p>I've even gone so far as to try a user function to do this, but this doesn't work either:</p> <pre><code>CREATE FUNCTION `to_bool`(var_num BIGINT) RETURNS TINYINT(1) RETURN var_num; </code></pre> <p>How do I convert an INT to a TINYINT(1) in a query in MySQL?</p> <p>EDIT: The above function DOES actually work to convert the value to a TINYINT(1), but my Connector/NET is just bugged and doesn't properly convert the values from functions.</p> <p>UPDATE 2009-11-03: Updated my connector and it's still giving me back Int32. Further testing reveals that this is an <a href="http://bugs.mysql.com/bug.php?id=48889" rel="nofollow">InnoDB bug</a> in MySQL 5.0.x that only shows under specific circumstances.</p> http://stackoverflow.com/questions/1768020/a-method-that-returns-true-if-the-temperature-objects-represents-a-temp-below-fre 0 A Method that returns true if the Temperature objects represents a temp below freezing point (JAVA) babi2balla 2009-11-20T02:52:39Z 2009-11-20T04:39:38Z <p>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 otherwise. This method should include only one inequality (i.e, one comparison formed using &lt;, &lt;=, >, or >=), which can be accomplished by determining the value of the temperature in one of the three scales before performing the necessary comparison with the freezing point for that scale. I already have a method that does the necessary conversion but i'm not entirely sure how to structure the whole method in general</p> <p>Any help is greatly appreciated!! Thanks</p> <p>public boolean isLowerThanFreezing(double value, char scale) {</p> <pre><code> if (Temperature &lt;= (0.0) 'C') { convertTo(); return true; } else { return false; } } </code></pre> <p>convertTo is the method i have for the conversions</p> http://stackoverflow.com/questions/1762878/how-to-check-if-string-value-is-boolean-type-in-java 2 How to check if String value is Boolean type in java? Ragnar 2009-11-19T12:13:28Z 2009-11-19T15:59:59Z <p>Hi,</p> <p>Did a little search on this but couldn't find anything usefull.</p> <p>Point being that if String value is either "true" or "false" the return value should be true. In every other value it should be false.</p> <p>Tried these:</p> <pre><code>String value = "false"; System.out.println("test1: " + Boolean.parseBoolean(value)); System.out.println("test2: " + Boolean.valueOf(value)); System.out.println("test3: " + Boolean.getBoolean(value)); </code></pre> <p>All functions returned false :(</p> http://stackoverflow.com/questions/1759773/ror-my-logic-works-boolean-value-doesnt-post 0 ROR - My logic works, Boolean value doesn't post JZ 2009-11-18T23:04:27Z 2009-11-18T23:07:40Z <p>Hello fellas, My logic tests an inventory supply; and the &lt; operator functions fine. How do I assign boolean values to "instock"? (using POST) In this test, under both conditions the value remains unchanged and this sample code does not work.</p> <p>Also this code is placed in an html.erb file, is there a better place for this code?</p> <pre><code> &lt;% if @inventory.needed &lt; @inventory.amount then %&gt; &lt;% @inventory.instock = 'true' %&gt; &lt;% else %&gt; &lt;% @inventory.instock = 'false' %&gt; &lt;% end %&gt; </code></pre> <p>Thank you in advance for your suggestions!</p> http://stackoverflow.com/questions/1757549/simple-read-vs-write-boolean-variable-performance-comparison-question 0 Simple read vs write boolean variable performance comparison question Shimmy 2009-11-18T17:10:07Z 2009-11-18T22:07:56Z <p>What should be the preferred way by programmers:</p> <p>1) Only Write:</p> <pre><code>SomeBoolean = True </code></pre> <p>2) Read but write only if necessary</p> <pre><code>If Not SomeBoolean Then SomeBoolean = True </code></pre> http://stackoverflow.com/questions/1703759/boolean-marshalling-with-layoutkind-explicit-is-this-broken-or-failing-as-design 3 Boolean Marshalling with LayoutKind.Explicit, Is this broken or failing as designed? csharptest.net 2009-11-09T20:56:23Z 2009-11-18T19:31:25Z <p>First of all the Boolean type is said to have a default marshal type of a four-byte value. So the following code works:</p> <pre><code> struct A { public bool bValue1; public int iValue2; } struct B { public int iValue1; public bool bValue2; } public static void Main() { int[] rawvalues = new int[] { 2, 4 }; A a = (A)Marshal.PtrToStructure(GCHandle.Alloc(rawvalues, GCHandleType.Pinned).AddrOfPinnedObject(), typeof(A)); Assert.IsTrue(a.bValue1 == true); Assert.IsTrue(a.iValue2 == 4); B b = (B)Marshal.PtrToStructure(GCHandle.Alloc(rawvalues, GCHandleType.Pinned).AddrOfPinnedObject(), typeof(B)); Assert.IsTrue(b.iValue1 == 2); Assert.IsTrue(b.bValue2 == true); } </code></pre> <p>Clearly these structures marshal independently just fine. The values are translated as expected. However, when we combine these structures into a "union" by declaring LayoutKind.Explicit like this:</p> <pre><code> [StructLayout(LayoutKind.Explicit)] struct Broken { [FieldOffset(0)] public A a; [FieldOffset(0)] public B b; } </code></pre> <p>We suddenly find ourselves unable to correctly marshal these types. Here is the test code for the above structure and how it fails:</p> <pre><code> int[] rawvalues = new int[] { 2, 4 }; Broken broken = (Broken)Marshal.PtrToStructure(GCHandle.Alloc(rawvalues, GCHandleType.Pinned).AddrOfPinnedObject(), typeof(Broken)); Assert.IsTrue(broken.a.bValue1 != false);// pass, not false Assert.IsTrue(broken.a.bValue1 == true);// pass, must be true? Assert.IsTrue(true.Equals(broken.a.bValue1));// FAILS, WOW, WTF? Assert.IsTrue(broken.a.iValue2 == 4);// FAILS, a.iValue1 == 1, What happened to 4? Assert.IsTrue(broken.b.iValue1 == 2);// pass Assert.IsTrue(broken.b.bValue2 == true);// pass </code></pre> <p>It's very humorous to see this express as true: (a.bValue1 != false &amp;&amp; a.bValue1 == true &amp;&amp; !true.Equals(a.bValue1))</p> <p>Of course the bigger problem here is that a.iValue2 != 4, rather the 4 has been changed to 1 (presumably by the overlapped bool). </p> <p><strong>So the question: Is this a bug, or just failed as designed?</strong></p> <p>Background: this came from <a href="http://stackoverflow.com/questions/1602899"> <a href="http://stackoverflow.com/questions/1602899">http://stackoverflow.com/questions/1602899</a></a></p> <p>Update: This is even stranger when you use large integer values (> 255) as only the byte that is used for the boolean is being modified to a 1, thus changing 0x0f00 to 0x0f01 for the b.bValue2. For a.bValue1 above it's not translated at all and 0x0f00 provides a false value for a.bValue1.</p> <p>Update #2:</p> <p>The most obvious and reasonable solution to the above issue(s) is to use a uint for the marshalling and expose boolean properties instead. Really solving the issue with a 'workaround' is not at question. I'm mostly wondering is this a bug or is this the behavior you would expect?</p> <pre><code> struct A { private uint _bValue1; public bool bValue1 { get { return _bValue1 != 0; } } public int iValue2; } struct B { public int iValue1; private uint _bValue2; public bool bValue2 { get { return _bValue2 != 0; } } } </code></pre> http://stackoverflow.com/questions/1748630/pass-a-boolean-ada-type-in-interfaces-c 1 Pass a Boolean Ada type in Interfaces.C andonis 2009-11-17T12:46:42Z 2009-11-17T18:46:42Z <p>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 the boolean type does not exist in ANSI C. I have a DLL function written in C++ whose exported function prototype has an argument of type Bool. How is this passed in the Intefaces.C package in order to call the DLL exported function? </p> http://stackoverflow.com/questions/1748641/boolean-in-python 0 Boolean in Python _bravado 2009-11-17T12:48:39Z 2009-11-17T13:10:44Z <p>Does Python actually contain a Boolean value? I know that you can do:</p> <pre><code>checker = 1 if checker: #dostuff </code></pre> <p>But I'm quite pedantic and enjoy seeing booleans in Java. For instance:</p> <pre><code>Boolean checker; if (someDecision) { checker = true; } if(checker) { //some stuff } </code></pre> <p>Is there such a thing as this in Python? I can't seem to find anything like it in the documentation.</p> http://stackoverflow.com/questions/1736684/boolean-expression-evaluation-in-java 1 Boolean Expression Evaluation in Java Trilok 2009-11-15T05:26:55Z 2009-11-15T05:53:41Z <p>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 something like: (x > 4 || x &lt; 8 &amp;&amp; p > 6) [ I will replace the variables with values. Is there a way by which I can evaluate this expression?</p> <p>The problem is, this can be any level deep. So, writing a parser would be really complex.</p> <p>Thanks</p> http://stackoverflow.com/questions/1731950/should-i-use-0-1-or-true-false-boolean 1 Should I use 0/1 or True/False boolean? alex 2009-11-13T21:10:20Z 2009-11-13T21:23:10Z <p>0/1 can be flexible and can add options such as "2, 3, 4" in the future.</p> <p>Does TinyINT in MySQL take up more space than boolean?</p> <p><strong>Personally, I use 0 and 1 for everything.</strong> </p> <p>You can answer this question in the context of regular programming (or mysql, whichever you like)</p> http://stackoverflow.com/questions/1724205/effect-of-a-bitwise-operator-on-a-boolean-in-java 4 Effect of a Bitwise Operator on a Boolean in Java Alcon 2009-11-12T18:01:54Z 2009-11-12T18:16:59Z <p>The bitwise operators are supposed to travel the variables and operate on the bit by bit. In the case of integers, longs, chars this makes sense. These variables can contain the full range of values enforced by their size. </p> <p>In the case of booleans, however, a boolean can contain only two values. 1 = true or 0 = false. But the size of the boolean isn't defined. It can be as big as a byte or as small a bit. </p> <p>So what's the effect of using a bitwise operator on a boolean? Does the JVM essentially translate it to a normal logical operator and move on? Does it treat the boolean as a single bit entity for the purpose of the operation? Or is the result undefined along with the size of a boolean?</p> http://stackoverflow.com/questions/1492726/core-data-mishandles-nscfboolean 0 Core Data mishandles NSCFBoolean ? François P. 2009-09-29T13:55:22Z 2009-11-09T03:56:59Z <p>Hi,</p> <p>I've got a Core Data managed object that has an attribute with a "Boolean" type.</p> <p>In my header file I've got this: @property (nonatomic, retain) NSNumber * includeInHistory;</p> <p>and I'm using a @dynamic includeInHistory implementation</p> <p>When interacting with an instance of this managed object before saving to disk, I've got something that actually maps to a NSCFBoolean through the NSNumber interface. I'm using "json-framework" to encode some dictionary containing values coming from Core Data.</p> <p>The problem is that after saving and retrieving the data back, includeInHistory returns what appears to be a standard NSNumber (integer, not typed as Boolean). This is problematic as when converted to JSON it maps to "includeInHistory" : 1 instead of includeInHistory" : true</p> <p>For now, I've had to resort to unboxing, then reboxing everytime I'm about to export as JSON, but this seems like a bug to me.... Am I missing something here ?</p> <p>Thanks</p> http://stackoverflow.com/questions/1698333/mutablearray-loaded-with-a-plist-file-boolean-value-how-do-i-test-whether-true 0 MutableArray loaded with a .plist file Boolean Value. How do I test whether True or False?? Abbacore 2009-11-08T23:31:59Z 2009-11-08T23:44:13Z <p>I seem to have a problem understanding how to conditionally test a boolean value loaded from a .plist to a mutablearray. I simply dont understand what i am supposed to do and continue to receive an error: Passing argument 1 of 'numberWithBool:" makes integer from pointer without a cast. any help understanding this is appreciated! </p> <p>heres my code:</p> <pre><code>if ([NSNumber numberWithBool:[[self.ListArray objectAtIndex:indexPath.row] valueForKey:@"TrueFalse"]]) { cell.accessoryView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"IsSelected.png"]]; } </code></pre> http://stackoverflow.com/questions/1698008/can-php-return-a-boolean-return-aantal-0 0 can php return a boolean? => return $aantal == 0; matthy 2009-11-08T21:41:29Z 2009-11-08T22:02:48Z <p>hi very short question can php return a boolean like this:</p> <pre><code>return $aantal == 0; </code></pre> <p>like in java you can </p> <pre><code>public boolean test(int i) { return i==0; } </code></pre> <p>or do you Have to use a if contruction? because if i do this.</p> <pre><code>$foutLoos = checkFoutloos($aantal); function checkFoutloos($aantal) { return $aantal == 0; } echo "foutLoos = $foutLoos"; </code></pre> <p>it echo's </p> <pre><code>foutLoos = </code></pre> <p>so not true or false</p> <p>thanks matthy</p> http://stackoverflow.com/questions/1690056/boolean-concatenation-whats-the-real-term-for-this-pattern 1 Boolean Concatenation? What's the real term for this pattern? rasx 2009-11-06T20:09:14Z 2009-11-06T20:45:33Z <p>Please consider the following function body:</p> <pre><code>var isValidated = true; $(selector1).each(function(){ //do validation with local f()... isValidated = f() &amp;&amp; isValidated; }); $(selector2).each(function(){ //do validation with local f()... isValidated = f() &amp;&amp; isValidated; }); $(selector3).each(function(){ //do validation with local f()... isValidated = f() &amp;&amp; isValidated; }); return isValidated; </code></pre> <p>My description of the progress of <code>isValidated</code> is Boolean concatenation---but there has to be an official, computer-science term for this thing. What is it? To clarify, the idea here is to let each <code>$()</code> block run---but when any one of these blocks have a validation failure the results of this failure must return <code>false</code> over all blocks (<code>true &amp;&amp; true &amp;&amp; false == false</code>). So, like many programmers, I am using some kind of a pattern but we often don't know what it is called. So does this pattern resemble anything useful?</p> http://stackoverflow.com/questions/1686591/two-member-enumeration-vs-boolean-value 0 Two member enumeration vs. boolean value Richard Slater 2009-11-06T10:04:20Z 2009-11-06T10:16:37Z <p>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 objects. Consider the following code as an example.</p> <p><strong>Using bool:</strong></p> <pre><code>public class Room { public string Name { get; set; } public bool Bookable { get; set; } public Room(string name, bool bookable); } </code></pre> <p>and the use of this class</p> <pre><code>Room r = new Room ("101", true); </code></pre> <p>This is suitably functional, there is however another way to implement it:</p> <p><strong>Using enum:</strong></p> <pre><code>public enum BookingStatus { Bookable, NotBookable } public class Room { public string Name { get; set; } public BookingStatus Bookable { get; set; } public Room(string name, BookingStatus bookable); } </code></pre> <p>and the use of this class</p> <pre><code>Room r = new Room ("101", BookingStatus.Bookable); </code></pre> <p>To me the two appear functionally equivalent, there are some advantages and disadvantages of each however:</p> <ul> <li>When setting properties the Enum method is more verbose (you can infer the usage of the enum from the code alone)</li> <li>Enumerations can be extended to support further states (particularly useful for an API)</li> <li>Enumerations require considerably more typing (although reduces this vastly)</li> <li>Enumerations can not be used in conditionals (i.e. if (r.bookable)), although I appreciate this is trivial to resolve.</li> </ul> <p>Am I missing something, totally off the mark? I am not sure why this bugs me so much, perhaps I am too OCD for my own good!</p> http://stackoverflow.com/questions/1452489/evaluation-of-boolean-expressions-in-python 0 Evaluation of boolean expressions in Python Casebash 2009-09-21T01:15:21Z 2009-11-05T07:36:19Z <p>What truth value do objects evaluate to in Python?</p> <p><strong>Related Questions</strong></p> <ul> <li><a href="http://stackoverflow.com/questions/1087135/boolean-value-of-objects-in-python">Boolean Value of Objects in Python</a>: Discussion about overriding the way it is evaluated</li> </ul> http://stackoverflow.com/questions/135845/are-booleans-as-method-arguments-unacceptable 35 Are booleans as method arguments unacceptable? koschi 2008-09-25T20:31:26Z 2009-11-03T23:59:31Z <p>A colleague of mine states that <strong>booleans as method arguments are not acceptable</strong>. They shall be replaced by enumerations. At first I did not see any benefit, but he gave me an example.</p> <p>What's easier to understand?</p> <pre><code>file.writeData( data, true ); </code></pre> <p>Or</p> <pre><code>enum WriteMode { Append, Overwrite }; file.writeData( data, Append ); </code></pre> <p>Now I got it! ;-)<br /> This is definitely an example where an enumeration as second parameter makes the code much more readable.</p> <p>So, what's your opinion on this topic?</p> http://stackoverflow.com/questions/177956/what-is-the-best-way-to-convert-an-int-or-null-to-boolean-value-in-an-sql-query 5 What is the best way to convert an int or null to boolean value in an SQL query? Thomas Bratt 2008-10-07T11:02:21Z 2009-11-03T16:49:34Z <p>What is the best way to convert an int or null to boolean value in an SQL query, such that:</p> <ul> <li>Any non-null value is <strong>TRUE</strong> in the results</li> <li>Any null value is <strong>FALSE</strong> in the results</li> </ul> http://stackoverflow.com/questions/1659273/plt-scheme-noob-boolean-and-or-arent-procedures 1 PLT Scheme noob: Boolean and/or aren't procedures? leo-the-manic 2009-11-02T03:10:52Z 2009-11-02T03:59:23Z <p>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.</p> <p>Anywho, I figured I'd have a hash with the string equivalent of operators as keys, and the Scheme procedures that correspond to those operators as values.</p> <p>E.g.</p> <pre> (define operator-table #hash(("+" . or) ("*" . and))) </pre> <p>So I could do something like</p> <pre><code>(lambda (a b) ((hash-ref operator-table (string-ref input-str i)) a b)) </code></pre> <p>Now I realize the above probably won't work right, but as it is I can't even tinker with it until I get it right, because apparently <code>and</code> and <code>or</code> are special in Scheme. At the REPL, if I type in <code>not</code> it replies <code>#&lt;procedure:not&gt;</code>. But if I give it <code>and</code> or <code>or</code>, it says <code>and: bad syntax in: and</code>. Is there a procedure version of <code>and</code> I can use? Or do I have to make one with <code>lambda</code>? Or am I missing something entirely?</p> <p>The only reason I didn't just go with lambda from the get-go is that I don't want to lose the variable-arity abilities of the builtin <code>and</code> [I can do <code>(and #t #f)</code> as well as <code>(and #t #f #f #t #f #t)</code>].</p> http://stackoverflow.com/questions/892394/passing-boolean-parameters-to-named-routes-in-rails 0 passing boolean parameters to named routes in rails sai 2009-05-21T11:06:55Z 2009-10-30T20:12:01Z <p>I want to explicitly pass a boolean false to params[:closed] and I've got something like this:</p> <pre><code>= link_to 'appointments', appointments_path(:closed =&gt; false) </code></pre> <p>But this is not working as rails is treating a false boolean as I don't want anything set for this params, is there any way to get around this?</p> <p>update: the false I'm passing in is a boolean and I want an url like this </p> <pre><code>\appointments?closed=false </code></pre> <p>but all I get is just \appointments. Hope this is a bit more clear.</p> <p>Side question, is it good practise to pass booleans as params?</p> http://stackoverflow.com/questions/356217/should-i-use-isgood-or-isgood-false 26 Should I use `!IsGood` or `IsGood == false`? chills42 2008-12-10T14:23:51Z 2009-10-30T17:51:31Z <p>I keep seeing code that does checks like this</p> <pre><code>if (IsGood == false) { DoSomething(); } </code></pre> <p>or this</p> <pre><code>if (IsGood == true) { DoSomething(); } </code></pre> <p>I hate this syntax, and always use the following syntax.</p> <pre><code>if (IsGood) { DoSomething(); } </code></pre> <p>or</p> <pre><code>if (!IsGood) { DoSomething(); } </code></pre> <p>Is there any reason to use '<code>== true</code>' or '<code>== false</code>'?</p> <p>Is it a readability thing? Do people just not understand Boolean variables?</p> <p>Also, is there any performance difference between the two?</p> http://stackoverflow.com/questions/1643872/jsf-boolean-output 1 JSF boolean output deelo55 2009-10-29T13:47:31Z 2009-10-29T14:20:22Z <p>Hi, Is there a way in JSF to output some text based on a boolean? For example: h:outputText value="Black" rendered="#{bean.isBlack}"</p> <p>The bean property is called isBlack not getIsBlack...I dont want to rename this.</p> <p>Thanks, D</p> http://stackoverflow.com/questions/541289/objective-c-bool-vs-bool 6 Objective-C : BOOL vs bool santoni 2009-02-12T13:46:05Z 2009-10-28T17:57:57Z <p>Hi,</p> <p>I'm new to objective-c and I saw the "new type" BOOL (YES, NO).</p> <p>I read that this type is almost like a char.</p> <p>For testing I did :</p> <pre><code>NSLog(@"Size of BOOL %d", sizeof(BOOL)); NSLog(@"Size of bool %d", sizeof(bool)); </code></pre> <p>Good to see both display 1 (sometimes in C++ bool just an int and sizeof is 4)</p> <p>So I was just wondering I there were some issues with the bool type or something ?</p> <p>Can I just use bool (that seems to work) without loosing speed?</p> <p>Thanks for answers</p> http://stackoverflow.com/questions/1633301/why-must-i-assign-the-result-of-phps-end-array-function-to-a-variable-to-opera 1 Why must I assign the result of PHP's end() array function to a variable to operate on the result? George Jempty 2009-10-27T19:57:03Z 2009-10-27T21:18:39Z <p>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":</p> <pre><code> if (empty(end($crontabEntryList))) { array_pop($crontabEntryList); } </code></pre> <p>If I first assign end's return value to a variable (as at the bottom) I am able to delete that last entry if empty. Per the <a href="http://us3.php.net/end" rel="nofollow">manual entry for end()</a> it "returns the value of the last element or FALSE for empty array." Through googling I've found <a href="http://www.webdeveloper.com/forum/archive/index.php/t-139802.html" rel="nofollow">a possible explanation</a>: booleans are not "writable". </p> <p>However then it would seem that this error gets returned, in my specific context, and possibly <a href="http://stackoverflow.com/questions/1532693/weird-php-error-cant-use-function-return-value-in-write-context">others documented here on SO</a>, merely because it is <em>possible</em> that a boolean could be returned. Because, the array in my instance decidedly was <em>not</em> empty, and therefore rather than false, end() "returns the value of the last element". </p> <p>Are my assumptions correct? In which case, isn't this inconsistent with the loosely typed nature of PHP? Or is it because the last element of the array is "not writable"? In which case, what precisely constitutes "write context" in PHP?</p> <pre><code> $last = end($crontabEntryList); if (empty($last)) { array_pop($crontabEntryList); } </code></pre> http://stackoverflow.com/questions/343669/how-to-let-jaxb-render-boolean-as-0-and-1-not-true-and-false 1 How to let JAXB render boolean as 0 and 1, not true and false corgrath 2008-12-05T12:30:40Z 2009-10-27T19:07:40Z <p>Hey guys.</p> <p>Got a quick question. Does anyone know how to let JAXB (marshall) render boolean fields as 1 and 0 instead of printing out "true" and "false"?</p> http://stackoverflow.com/questions/1605674/why-when-to-use-p-instead-of-p-null 5 Why/When to use (!!p) instead of (p != NULL) Juan Macek 2009-10-22T08:10:04Z 2009-10-23T06:36:05Z <p>In the following code, what is the benefit of using <code>(!!p)</code> instead of <code>(p != NULL)</code>?</p> <pre><code>AClass *p = getInstanceOfAClass(); if( !!p ) // do something else // do something without having valid pointer </code></pre> http://stackoverflow.com/questions/1584733/python-things-which-are-neither-true-nor-false 5 Python things which are neither True nor False interstar 2009-10-18T12:09:00Z 2009-10-19T02:51:43Z <p>I just found this :</p> <pre><code>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 "goodbye" </code></pre> <p>which produces :</p> <pre><code>False False False False False False hello </code></pre> <p>So a neither is, nor equals True nor False, but acts as True in an if statement. </p> <p>Why?</p> <p>Update : </p> <p>actually, I've just realized that this isn't as obscure as I thought. I get the same result for a=2, as well (though not for a=0 or a=1, which are considered equal to False and True respectively)</p>