export function identity<T>(a: T): T
{
    return a;
}