export function isNotNullish(v: T | null | undefined): v is T { return v != null }