• @IRQBreaker@startrek.website
    link
    fedilink
    1310 months ago

    As an embedded software developer that does linux kernel drivers I’ve come to love the tab size 8 indentation level.

    I’m paraphrasing: “if your indentation level gets too deep, it’s time to rethink/refactor your function.”

    And with tab 8 you’ll notice it rather quick if your function does too much/unrelated stuff.

    A function should be short and do one thing only, if possible. It also makes unit testing easier if that’s a requirement.

    • xigoi
      link
      -110 months ago

      When you’re operating on such a low level of abstraction, it’s no wonder you don’t need deep nesting.

      • @IRQBreaker@startrek.website
        link
        fedilink
        110 months ago

        Oh, I’ve done my fair share of C++ and Python as well. But you got to agree with me that when you are on your fourth indented “if case” it’s time to step back and think about what you are trying to achieve. I mean it’s probably going to work, but probably also very hard to maintain that type of code.

        • xigoi
          link
          210 months ago

          How would you implement, for example, Gaussian elimination with at most 3 levels of nesting?

            • xigoi
              link
              2
              edit-2
              10 months ago

              Be specific. Which exact part would you abstract away and how?

              • @JesperZ@programming.dev
                link
                fedilink
                3
                edit-2
                10 months ago

                There a many ways to implement abstractions, but it’s highly dependent on the language in question. You could simply refactor each level of nesting into its own function, with all dependents provided as parameters instead of scoped variables. You could then flatMap to avoid a bunch of nested looping, favoring a linear approach that’s often easier to reason about. You could go all out and refactor all your conditional statements away, in favor of the Either monad. You’d then have a number of functions, each doing one thing (including no nesting), and a main function gluing it all together, linearly. That is a pattern you can always apply; there’s nothing controversial about it, and on a similar note there’s nothing particularly challenging about Gaussian elimination.