mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 13:20:59 +00:00 
			
		
		
		
	 f1809db994
			
		
	
	
		f1809db994
		
	
	
	
	
		
			
			Adds methods to retrieve a Unicode property from a string and to check if a code point matches a Unicode property. Also adds a <LibUnicode/Forward.h> header.
		
			
				
	
	
		
			22 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			333 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;
 | |
| enum class GeneralCategory;
 | |
| enum class Locale;
 | |
| enum class Property : u64;
 | |
| enum class WordBreakProperty;
 | |
| 
 | |
| struct SpecialCasing;
 | |
| struct UnicodeData;
 | |
| 
 | |
| }
 |