pub const fn countries() -> &'static [Country]
Returns the full list of known countries, ordered by ISO 3166-1 alpha-2 code.
use countries::Country; assert!(countries::countries().iter().any(|c| c.code == "GB"));