///
//? Create collections of items.
//@ robust
module TDev.RT.Collections
{
//? Creates an empty User collection
//@ [result].writesMutable
export function create_user_collection(): Collection { return new Collection(User); }
//? Creates an empty DateTime collection
//@ [result].writesMutable
export function create_date_time_collection(): Collection { return new Collection(DateTime); }
//? Creates an empty Picture collection
//@ [result].writesMutable
export function create_picture_collection(): Collection