-
**Is your feature request related to a problem? Please describe.**
There doesn't seem to be a way to query for multiple values. Maybe I just didn't found how to do it in the code/documentation.
…
-
## The Problem
```
[15] > my $m = .one
one(1, 2, 3)
[16] > $m != 0
True
[17] > $m == 0
one(False, False, False)
```
## Expected Behavior
`$m != 0` should be `one(True, True, True)`, …
-
v2.56.12
```
$ tpl
?- current_op(X,Y,&).
false. % ok, free
?- op(1,fy,&).
true.
?- op(1,yf,&).
throw(error(permission_error(create,operator,&),op/3)). % unexpected, see below
?- ha…
-
https://github.com/Ratstail91/Toy/blob/7398898a61afb5a668d1ae665bae93a980973cea/source/toy_vm.c#L336-L347
In most languages, the `&&` and `||` operators have short-circuiting behavior. As it is, th…
-
Let's take again the Schwinger-Dyson equation, from some Joe's [test page](http://eyeasme.com/Joe/MathML/MathML_browser_test.html) which gives both a TeX formula and a MathML one...
**Expectation**…
-
Hello Vidur,
Thank you for sharing your work. While reading the code and documentation, I encountered some questions related to the *Profiling Communication Operators* mentioned in the paper.
In the…
-
Hi there,
I had a question regarding the operators/functions that are being used in the yolov8_e2e.py and it's pose equivalent.
I am trying to find the function definitions for methods like Sele…
-
In vic3 (and I suspect in other games) if you scope inside a logical operate scope (such as OR) it will default back to AND. A somewhat common mistake I see is this:
Where the modder wants to do a …
-
I know there is "all" and "any" in conditions, but there doesn't seem to be an "and" (or "or") operator for instance?
Like: {% if condition-a and condition-b %} (or perhaps "if and conditon-a condi…
-
[Bitwise operators are a feature in Lua 5.3](https://lua-users.org/wiki/BitwiseOperators), and it would be nice to have them since your already implementing Lua 5.2 features anyway.
The reason I …