Reply to Brian,
I want to use a chaining system for easy setting of object attributes,
which would work great for a single object, unfortunately derived
classes cannot inherit the chained functions implicitly, whats the
best way around this?
class Base {
int x;
Base foo(int x_) {
this.x = x_;
r
I want to use a chaining system for easy setting of object attributes,
which would work great for a single object, unfortunately derived classes
cannot inherit the chained functions implicitly, whats the best way
around this?
class Base {
int x;
Base foo(int x_) {
Le Wed, 25 Feb 2009 01:03:32 +0100, Daniel Keep
a écrit:
TSalm wrote:
In my case, there's also no possibility to get the wrong type, because
it is managed by the type of the ColumnMem.
You still have to get the code right. There's a surprising number of
corner cases trying to store arbit
Jarrett Billingsley wrote:
On Tue, Feb 24, 2009 at 12:00 PM, wade Shen wrote:
Is there a way to track down where memory is being allocated if I'm using
phobos? Any recommendations would be appreciated.
This is something I have *always* wanted. Unfortunately I don't think
it's possible to a