Function loadManyComplex

Utility method that loads many of a model T off of a fast JSON object, passing in a sub-type TSub as the first argument to the constructor. Calls the delegate f for each member loaded, returning nothing.

Prototype

void loadManyComplex(TSub, T)(
  TSub sub,
  ref JSON obj,
  void delegate(T) F
);