Re: Struct nested function

2023-09-13 Thread Ferhat Kurtulmuş via Digitalmars-d-learn
On Wednesday, 13 September 2023 at 05:58:13 UTC, vino wrote: Hi All, Request your help, I have a struct which has many functions, I need to run a function from within another function(From Display function execute the runner function), an example as below From, Vino The problem starts h

Struct nested function

2023-09-12 Thread vino via Digitalmars-d-learn
Hi All, Request your help, I have a struct which has many functions, I need to run a function from within another function(From Display function execute the runner function), an example as below ``` import std.stdio: writeln; import std.algorithm: joiner; import std.parallelism: task; impor