Constructs a drupal_render() style array from an array of loaded users.
$accounts: An array of user accounts as returned by user_load_multiple().
$view_mode: (optional) View mode, e.g., 'full', 'teaser'... Defaults to 'teaser.'
$langcode: (optional) A language code to use for rendering. Defaults to the global content language of the current request.
An array in the format expected by drupal_render().
function user_view_multiple($accounts, $view_mode = 'full', $langcode = NULL) {
return entity_view($accounts, $view_mode, $langcode);
}