these can also be orchestrated as accessor:
static a(self, ..._) {
if (_.length) [self.#a] = _;
return self.#a;
}
these can also be orchestrated as accessor:
static a(self, ..._) {
if (_.length) [self.#a] = _;
return self.#a;
}
If interested, I started explaining what's behind the scene here 👋
github.com/WebReflectio...
If interested, I started explaining what's behind the scene here 👋
github.com/WebReflectio...
Not standards based, abstraction killed perf to me, yet great!
Not standards based, abstraction killed perf to me, yet great!
I am super glad I was involved in shaping the next templating adventure in Python + I am very thankful to them too
pep-previews--4124.org.readthedocs.build/pep-0750/
I am super glad I was involved in shaping the next templating adventure in Python + I am very thankful to them too
pep-previews--4124.org.readthedocs.build/pep-0750/
sure thing, I just wonder though:
sure thing, I just wonder though:
github.com/WebReflectio...
github.com/WebReflectio...
experiment succeeded 🥳
experiment succeeded 🥳
for (const i of range(1))
console.log(i); // 0
for (const i of range(0, 2))
console.log(i); // 0, 1
for (const i of range(0, 4, 2))
console.log(i); // 0, 2
for (const i of range(1))
console.log(i); // 0
for (const i of range(0, 2))
console.log(i); // 0, 1
for (const i of range(0, 4, 2))
console.log(i); // 0, 2