On Wednesday, 3 February 2021 at 10:20:44 UTC, evilrat wrote:
On Wednesday, 3 February 2021 at 08:26:05 UTC, Max Haughton
wrote:
On Wednesday, 3 February 2021 at 05:30:37 UTC, Виталий Фадеев
wrote:
Possible to change the vtbl record at runtime ?
Has functional for update vtbl records ?
Do you
On Wednesday, 3 February 2021 at 08:26:05 UTC, Max Haughton wrote:
On Wednesday, 3 February 2021 at 05:30:37 UTC, Виталий Фадеев
wrote:
Do you mean "Can I set onSuccess" at runtime?
Yes.
On Wednesday, 3 February 2021 at 05:30:37 UTC, Виталий Фадеев
wrote:
Reason:
Reuse component,
bind custom callback without creating new class.
Concept example:
class SaveFilePopup
{
void onSuccess() { /* default operations */ }
}
auto saveFile = new SaveFilePopup
On Wednesday, 3 February 2021 at 08:26:05 UTC, Max Haughton wrote:
On Wednesday, 3 February 2021 at 05:30:37 UTC, Виталий Фадеев
wrote:
Possible to change the vtbl record at runtime ?
Has functional for update vtbl records ?
Do you mean "Can I set onSuccess" at runtime? The virtual
tables are
On Wednesday, 3 February 2021 at 05:30:37 UTC, Виталий Фадеев
wrote:
Reason:
Reuse component,
bind custom callback without creating new class.
Concept example:
class SaveFilePopup
{
void onSuccess() { /* default operations */ }
}
auto saveFile = new SaveFilePopup
Reason:
Reuse component,
bind custom callback without creating new class.
Concept example:
class SaveFilePopup
{
void onSuccess() { /* default operations */ }
}
auto saveFile = new SaveFilePopup();
saveFile.onSuccess = { /* New operations */ }
Delegate:
m