-
This is just a small issue, but I would expect
```ruby
self.polymorphic = []
```
to behave the same as no assignment at all. Instead, the behaviour changes, since the `Polymorphism` module is …
-
https://github.com/SwuduSusuwu/SubStack/blob/trunk/cxx/ClassObject.hxx
-
**Note from the teaching team:** This bug was reported during the _Part II (Evaluating Documents)_ stage of the PE. **You may reject this bug if it is not related to the quality of documentation.**
![…
-
Some libraries export variadics, which are a problem because we cannot easily copy variadic arguments through wrappers. Examples include:
- Logging/printing functions (example???)
- Polymorphism via…
-
We should implement *runtime polymorphism*, using virtual function tables. Here is the simplest example:
```python
# Base class
class A:
def myprint():
print("A")
def f(a: A):
…
-
We should consider expanding the existing list of Malware Objectives/Capabilities, including with the following (definitions are notional):
- Redirection : the malware instance is capable of redirecti…
-
Property _Entity_ of a class _DasContract.Abstraction.Data.Property_ has a comment:
`A linked entity in case of Type=PropertyType.Entity. `
I consider this a bit of bad design. If this property …
-
As Julia demonstrates, ad hoc overloading is a great fit for numerical computing! In Dex we have some support for it, in the form of interfaces (type classes), but I would claim that it's still a litt…
-
At the moment, when making a D function for use in Lua, there doesn't seem to be a way of accessing the caller's LuaState, and there doesn't seem to be a way to construct a LuaObject to return to Lua …
-
In chapter "Classes and Objects", the "Inheritance" section uses Emplyee/Programmer/Cook/Baker/GeekCook as example.
The problem with is that it's pretty arbitrary, there doesn't seem to be an problem…