Stringly Typed Booleans

I’m getting rather hacked off seeing boolean properties typed as strings. Stringly typed is a phrase I learnt off a post from the excellent Coding Horror blog and it describes a phenomena whereby properties that are of a specific type, e.g. Boolean, Date, int, are stored needlessly as strings.

I’m working on a website that communicates with a money laundering service to check whether an individual is “bad” or not. Individuals can pass the test, but importantly it is possible to pass the test with some warning flags raised. If any of the warning flags are raised then an email should be sent off to compliance for them to do…whatever it is they do. Fair enough right?

The warning flags are obviously booleans. There was either a warning raised or there wasn’t – there are no two ways about it (no pun intended). In the serialized response, the warning flags are encoded as “Yes” or “No”…which is understandable. Now, upon receiving the response, it is parsed and turned into an internal representation. This is where things get really weird. The programmer that coded the object that stores the response from the service has decided to encode the warnings as strings, initialised to “”. Which is totally fucking bonkers.

Why?

Well, now our boolean warnings aren’t really booleans – they have WAY more than two possible values and the meaning of these values is subjective. One may consider “”, null, “No” as false, but could conceivably also consider “false” or “0″. We get the same sort of problem with true – “Yes”, “1″, “true” and then we get a whole load of unknown values which is every other possible string in the world. Which might be considered to be true.

So how the hell can any number of programmers work on this piece of code without introducing errors because of differing definitions of truthy and falsey values? Well, they can’t. To illustrate the problem further, even loosely typed languages differ in their boolean coercion, for example JavaScript and PHP:

<script>
if("0") alert('Opposite day!');
</script>

<?php
if("0") echo 'Opposite day!';
?>

JavaScript considers “0″ true but PHP considers it false. Personally I think JavaScript is “right” here, but as I said before, it is totally subjective.

The icing on the cake is of course the extra code you have to write to check the truthy or falsey string values. Something along the lines of “if x is not null and not empty and not the word No then it is probably true…probably”, which would otherwise have been coded as “if x then true” if x was a boolean – which is orders of magnitude shorter.

Of course, there are some bat shit crazy strongly typed languages that allow you to assign null to a Boolean, but that is a different story altogether.

9,863 thoughts on “Stringly Typed Booleans

  1. Somebody essentially lend a hand to make severely articles I might state. That is the very first time I frequented your web page and to this point? I amazed with the analysis you made to make this particular post amazing. Magnificent activity!

  2. leovegas online casino united states, 21 dusaes casino and casinos that accept paypal in australia,
    or 2021 no deposit casino usa

    my homepage … bingo phrase origin (Ewan)

  3. Thank you, I have recently been looking for info about this topic for ages and yours is the best I’ve discovered till now. But, what about the conclusion? Are you sure about the source?

  4. I have realized that online degree is getting common because obtaining your college degree online has changed into a popular alternative for many people. Quite a few people have not had a chance to attend a conventional college or university however seek the elevated earning potential and career advancement that a Bachelor Degree grants. Still other individuals might have a diploma in one training but would like to pursue another thing they now have an interest in.

  5. I have discovered that charges for online degree experts tend to be a fantastic value. Like a full 4-year college Degree in Communication from The University of Phoenix Online consists of 60 credits with $515/credit or $30,900. Also American Intercontinental University Online gives a Bachelors of Business Administration with a complete study course feature of 180 units and a tariff of $30,560. Online studying has made getting the higher education degree so much easier because you can easily earn your own degree through the comfort of your dwelling place and when you finish from office. Thanks for all tips I have certainly learned from your web-site.

  6. Thanks for giving your ideas with this blog. Likewise, a misconception regarding the financial institutions intentions whenever talking about foreclosure is that the bank will not getreceive my repayments. There is a fair bit of time in which the bank is going to take payments in some places. If you are very deep inside the hole, they’ll commonly call that you pay the actual payment 100 . However, i am not saying that they will have any sort of payments at all. Should you and the lender can manage to work something out, the particular foreclosure approach may halt. However, in case you continue to miss payments wih the new system, the foreclosed process can just pick up exactly where it was left off.

  7. I was suggested this blog by my cousin. I am not sure whether this post is written by him as nobody else know such detailed about my problem. You are incredible! Thanks!

  8. It is really a great and helpful piece of info. I am glad that you shared this useful information with us. Please keep us up to date like this. Thanks for sharing.

  9. I like the helpful information you provide in your articles. I?ll bookmark your weblog and check again here regularly. I am quite sure I?ll learn many new stuff right here! Good luck for the next!

Leave a Reply

Your email address will not be published. Required fields are marked *

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>