export function ExcludesNull(x: T | null): x is T { return x !== null }