-
Most languages in which I've seen operator overloading carry out overloading via types. If I do `A + B` then I use a `+` function defined on `A`'s class (whatever `A`'s type is at runtime).
This me…
-
## Description
An awesome methodmap for strings to get rid of char arrays and simplify tones of code. Not sure it all possible, but would be great
## Expected behavior (i.e. solution)
``` sourcep…
-
I treid to overload the 'And' Operator in MyClass (C#). Flee gives me the following Exception:
"AndOrElement: Operation 'And' is not defined for types 'MyClass' and 'MyClass'"
Overloading the '+…
-
Cannot invoke initializer for type 'ValidationRulePattern' with an argument list of type '(pattern: EmailValidationPattern, error: ValidationError)'
-
The file stream class has already been quite improved with #397 , but we can do more.
## `file_stream`
- [ ] Rename to `adiar::istream` and `adiar::levelized_istream` to better match *std*.
- […
-
I feel that the new behavior for operators such as:
`i++` returns the same value is in CPP/1 `++i` and adding `obj-` as moving object feels weird to me and raised concert about future of libraries …
-
From Michael Chow on [slack channel](https://app.slack.com/client/T01385BBDLH/C04GTP7V4V9/thread/C04GTP7V4V9-1676287356.868619):
>Hi,
>What about supporting operator overloading for ! ? Recently I …
-
One of the things that @jakobkummerow proposed in https://github.com/littledan/proposal-bigdecimal/issues/31 was to avoid using new concepts in BigDecimal that aren't present elsewhere in the language…
-
If you want to return a getter and setter in a function, you have to wrap it in an object property. This can limit some abilities to implement more reactivity in ECMAScript. For example:
```js
func…
-
Some operations like: +, * or == are commutative (a + b = b + a) but some are not, like - or / (a - b != b - a).
**INFO:** commutative with some limits because js accept really strange stuff to app…