Ejemplo n.º 1
0
 internal static Functor Of <T> (QueueFunctor <T> callback, T state) where T : class => new Functor((object o) => callback((T)o), state);
Ejemplo n.º 2
0
 public static void Queue <T> (QueueFunctor <T> functor, T argument) where T : class => Enqueue(Functor.Of(functor, argument));