Recent content by lotto

  1. L

    Type cast

    Thanks
  2. L

    Type cast

    to check if I had any match.
  3. L

    Type cast

    how do you do explicit type casts in 11l? We have a few functions like 11l --> cpp Int("54") --> to_int("54") Int(54.2) --> to_int(54.2) defined in String.hpp, but those are all manually defined functions. But is there an equivalent of static_cast<> in 11l? For example, how could I...
  4. L

    Documentation suggestions

    Hey, sorry for bothering again. May I suggest another edit? should be changed to (underlined the change) It's only a 1 word change, but I feel like it's a good change. This 1 extra word will keep it brief while being more informative.
  5. L

    Documentation suggestions

    May I suggest the following additions/edits to 11l docs? MODULE RANDOM The doc is missing the seed function. It should be added (especially since it already exists in random.hpp) BUILT-IN TYPES I feel like it's not explained clearly enough how someone could, for example, declare an empty...
  6. L

    Transpiler GCC version check

    Is GCC 8 strictly needed? Or does it only need any version more recent than 8? If it's the latter I don't think 11l.py should check if there's GCC 8 installed, especially when current version of GCC (stable) is 10.2 Probably it should check if AT LEAST GCC 8 is installed. Right now it's doing...
Top