Is there such a thing, or can such a thing be created that will allow us to do ``` #[cfg(not(any(target_os = "apple-like")))] ``` or ``` #[cfg(not(any(target_vendor = "apple")))] ``` instead of ``` #[cfg(not(any(target_os = "macos", target_os = "ios", target_os = "tvos", target_os = "visionos")))] ```