Function loadMany

Utility method that loads many of a model T off of a fast JSON object. Calls the delegate f for each member loaded, returning nothing.

Prototype

void loadMany(T)(
  Client client,
  ref JSON obj,
  void delegate(T) F
);