I did a code that uses custom literals to allow indexing arrays with ordinals (1st, 2nd, 3rd), all at compile time. Additionally _st works only with 1, _nd only with 2, _rd only with 3. Zero and negative numbers are also not supported and fail compilation.

https://github.com/serpent7776/bits/blob/master/th.cpp/th.cpp

  • _sideffect@lemmy.world
    link
    fedilink
    arrow-up
    10
    arrow-down
    1
    ·
    5 months ago

    What’s the purpose of this? If you want to access an index in an array, isn’t using integers easier?

    And if you want string literals, you can make a map and access the key that way as well

    • dankm@lemmy.ca
      link
      fedilink
      arrow-up
      15
      arrow-down
      1
      ·
      5 months ago

      Does it matter? OP had an itch. He scratched it, and shared it with the world.

      The reason could be “I wonder if I can?”. That’s good enough.

      • _sideffect@lemmy.world
        link
        fedilink
        arrow-up
        2
        ·
        5 months ago

        Yeah it’s always a good way to learn things.

        I only asked because I was genuinely curious if there was something I was missing about why you created this, that’s all.