-
Just like `propertynames`, I think a `propertytypes` function could exist to be able to work in tandem with `propertynames` when one wants to provide/align to an interface by overloading when `fieldty…
-
Following the discussion initiated by @chshersh:
https://discuss.ocaml.org/t/where-to-find-complete-documentation-on-syntax-overloading-in-ocaml/13311
It appears several topics are not addressed…
-
## Overloading
Lots of APIs are using overloading. (ex: `Unified#use` and `Unified#data`) I think overloading is quite harmful. To use this, we need to implement lots of assertion code and those as…
-
I can't seem to get this to work, and it seems to be because of your use of overloading. According to the docs, overloading is [not supported](http://flowtype.org/docs/functions.html#overloading-cauti…
-
### What is wrong?
There's no method overloading in Fe. However for some standard EIP we need overloading method. E.g `safeTransferFrom` for ERC721 token. We should support it as well.
### How …
-
We plan to present Decimal for Stage 1 at the February 2020 TC39 meeting. To get to Stage 2, it will be useful to accomplish the following tasks to further investigate both options:
- BigDecimal
-…
-
I have been experimenting with SensESP v3.0 and mostly having great success. However, as I try to do more advanced things I have run into a snag. What I am trying to do (maybe mistakenly) is have a cu…
-
Right now we have an efficient matrix multiplication operation that admits expression template arguments but it only works for functions and not for operator overloading. Investigate this issue and s…
-
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…
-
# Bug Report
Is there any reason it's not possible to re-use a function type that is overloaded aka has different possible amount of arguments?
In the playground I put some code that shows this …