• gccalvin@lemmy.world
      link
      fedilink
      arrow-up
      1
      ·
      19 天前

      Would you be willing to explain what a typed dictionary is and when it would be useful in the context of Godot?

      • Julian@lemm.ee
        link
        fedilink
        English
        arrow-up
        3
        ·
        19 天前

        Gdscript let’s you do static typing, so “var a : int” ensures that a is an integer. This can help prevent bugs and bad code, and even speeds up the interpreter since it can make some assumptions.

        So until now, you couldn’t do that with dictionaries, they always allowed any type as a key or value. This adds that functionality so dictionaries can be used with stricter rules, preventing bugs and making them faster.