Sat. Nov 22nd, 2025

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