exportfunction isPresent<T>(t: T | undefined | null): t is T {
return t !== undefined && t !== null;
}
exportfunction isDefined<T>(t: T | undefined): t is T {
return t !== undefined;
}
exportfunction isFilled<T>(t: T | null): t is T {
return t !== null;
}