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,870 thoughts on “Stringly Typed Booleans

  1. I do consider all the concepts you’ve offered to your post. They are really convincing and can definitely work. Still, the posts are very brief for beginners. Could you please prolong them a bit from subsequent time? Thank you for the post.

  2. Thank you for another excellent article. Where else could anybody get that type of information in such an ideal way of writing? I’ve a presentation next week, and I’m on the look for such info.

  3. Thanks a lot for the helpful article. It is also my opinion that mesothelioma has an extremely long latency time period, which means that signs of the disease may not emerge until eventually 30 to 50 years after the 1st exposure to asbestos fiber. Pleural mesothelioma, that’s the most common style and influences the area across the lungs, might result in shortness of breath, chest pains, plus a persistent coughing, which may cause coughing up blood.

  4. I like what you guys tend to be up too. This sort of clever work and coverage! Keep up the wonderful works guys I’ve you guys to my personal blogroll.

  5. In this grand design of things you’ll receive an A+ with regard to hard work. Where you misplaced everybody was first in your details. As as the maxim goes, details make or break the argument.. And it could not be much more accurate at this point. Having said that, permit me tell you just what did do the job. Your writing is definitely rather convincing and that is possibly the reason why I am making the effort in order to opine. I do not make it a regular habit of doing that. Secondly, while I can easily notice the leaps in reason you come up with, I am not convinced of exactly how you seem to connect the points that make the actual conclusion. For now I will, no doubt yield to your issue however wish in the near future you actually connect the facts much better.

  6. В статье подробно описано, как ITB Company выстраивает SEO-продвижение для бизнеса в Екатеринбурге: от аудита и сбора семантики до создания контента и ссылочной стратегии. Понравилось, что делают акцент на локальное SEO — регистрация в каталогах, работа с отзывами, адаптация под геозависимые запросы. Полезно: https://riminisalon.ru/stati/kak-seo-prodvizhenie-s-itb-company-pomogaet-biznesu-ekaterinburga-rasti/

  7. Hello there, I found your site by way of Google whilst searching for a comparable subject, your web site got here up, it seems great. I’ve bookmarked it in my google bookmarks.

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>