Tue. Jan 20th, 2026

def is_float_list(mylist: list[Any]) -> TypeGuard[list[float]]:
    return all(isinstance(x, float) for x in mylist)