mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	 3f64a14e06
			
		
	
	
		3f64a14e06
		
	
	
	
	
		
			
			This data informs consumers how to join lists of values. For example, in en-US, the list ["a", "b", "c"] formatted to a string should become "a, b, and c".
		
			
				
	
	
		
			35 lines
		
	
	
	
		
			671 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
	
		
			671 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| /*
 | |
|  * Copyright (c) 2021, Tim Flynn <trflynn89@pm.me>
 | |
|  *
 | |
|  * SPDX-License-Identifier: BSD-2-Clause
 | |
|  */
 | |
| 
 | |
| #pragma once
 | |
| 
 | |
| #include <AK/Types.h>
 | |
| 
 | |
| namespace Unicode {
 | |
| 
 | |
| enum class Condition : u8;
 | |
| enum class GeneralCategory : u8;
 | |
| enum class Language : u8;
 | |
| enum class ListPatternStyle : u8;
 | |
| enum class ListPatternType : u8;
 | |
| enum class Locale : u16;
 | |
| enum class Property : u8;
 | |
| enum class Script : u8;
 | |
| enum class Territory : u8;
 | |
| enum class WordBreakProperty : u8;
 | |
| 
 | |
| struct Keyword;
 | |
| struct LanguageID;
 | |
| struct ListPatterns;
 | |
| struct LocaleExtension;
 | |
| struct LocaleID;
 | |
| struct OtherExtension;
 | |
| struct SpecialCasing;
 | |
| struct TransformedExtension;
 | |
| struct TransformedField;
 | |
| struct UnicodeData;
 | |
| 
 | |
| }
 |