roxen.lists.pike.general

Subject Author Date
Re: thread and lambda Mirar @ Pike importmöte för m <6341[at]lyskom[dot]lysator[dot]liu[dot]se> 23-03-2009
For the complexity of warning untangling, consider:

  void make_my_thread(function f,mixed ...args)
  {
  ...
     Thread.Thread(f,@args);
  ...
  }
  
  function g=make_my_thread;
  
  ...
  g(lambda() ... };