///
//? Create collections of items.
//@ robust
module TDev.RT.Create
{
//? Creates an empty collection of arbitrary type
//@ [result].writesMutable
export function Collection_of(s:IStackFrame, type_T:any): Collection
{
return new Collection(type_T)
}
}