Comment by dataflow

Comment by dataflow a day ago

18 replies

Doesn't this obfuscate what assumptions you can make when trying to understand the core logic? You prefer to examine all the call chains everywhere?

fmbb a day ago

The ”core logic” of a program is what output it yields for a given input.

If you find a bug, you find it because you discover that a given input does not lead to the expected output.

You have to find all those ifs in your code because one of them is wrong (probably in combination with a couple of others).

If you push all your conditionals up as close to the input as possible, your hunt will be shorter, and fixing will be easier.

avianlyric a day ago

This is why we invented type systems. No need to examine call chains, just examine input types. The types will not only tell you what assumptions you can make, but the compiler will even tell you if you make an invalid assumption!

  • dataflow a day ago

    You can't shove every single assumption into the type system...

    • knome a day ago

      You can and should put as many as you can there

      https://lexi-lambda.github.io/blog/2019/11/05/parse-don-t-va...

      If instead of validating that someone has sent you a phone number in one spot and then passing along a string, you can as easily have a function construct an UncheckedPhoneNumber. You can choose to only construct VerifiedPhoneNumbers if the user has gone through a code check. Both would allow you to pluck a PhoneNumber out of them for where you need to have generic calling code.

      You can use this sort of pattern to encode anything into the type system. Takes a little more upfront typing than all of those being strings, but your program will be sure of what it actually has at every point. It's pretty nice.

      • [removed] a day ago
        [deleted]
      • alfiedotwtf 19 hours ago

        Yep! I have seen so much pushed into a type system that in the end there was hardly any code needed to do validation or scaffolding… to the point where it felt magical

    • treyd a day ago

      You can express a lot of concepts just through types in languages with richer type systems.

      • shiandow 17 hours ago

        Even without a rich type system you can express a lot of things just through naming.

        You just can't enforce those assumptions.

    • layer8 a day ago

      True, but there are still documented interface contracts you can program against. The compiler won’t catch violations of the non-type parts, but the requirements are still well-defined with a proper interface contract. It is a trade-off, but so is repeating the same case distinction in multiple parts of the program, or having to pass around the context needed to make the case distinction.

    • sn9 a day ago

      You can at least shove them into the constructors.

    • Nevermark a day ago

      [flagged]

      • kevindamm a day ago

          > with admirable tunnel vision, bullheadedness and mission for maximally general algebraic and arbitrary constraint type systems.
        
        I believe they're called keyhole optimizations, greedy search, and "the customer is always right..."
furyofantares a day ago

The idea and examples are that the type system takes care of it. The rule of thumb is worded overly generally, it's more just about stuff like null checks if you have non-nullable types available.

geysersam a day ago

No I don't think so because if you make your assumptions early then the same assumptions exist in the entire program and that makes them easy to reason about

setr a day ago

If you’ve massaged and normalized the data at entry, then the assumptions at core logic should be well defined — it’s whatever the rules of the normalized output are.

You don’t need to know all of the call chains because you’ve established a “narrow waist” where ideally all things have been made clear, and errors have been handled or scoped. So you only need to know the call chain from entry point to narrow waist, and separately narrow waist till end.