Brian Gianforcaro 
								
							 
						 
						
							
							
							
							
								
							
							
								129462cca7 
								
							 
						 
						
							
							
								
								AK: Unify FlyString/StringView::ends_with implementation on StringUtils::ends_with  
							
							... 
							
							
							
							This creates a unified implementation of ends_with with case sensitivity
across String/StringView/FlyString. 
							
						 
						
							2020-05-26 13:17:19 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								e4b9cf9b6c 
								
							 
						 
						
							
							
								
								AK: Some FlyString improvements  
							
							... 
							
							
							
							We're now clever enough to notice when we're constructing a FlyString
from a String that is actually already a FlyString. :^) 
							
						 
						
							2020-05-05 11:26:03 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								76bb0fab2d 
								
							 
						 
						
							
							
								
								AK: Make FlyString a little less hilariously unoptimized :^)  
							
							
							
						 
						
							2020-04-06 08:26:26 +02:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								95cc4c7e74 
								
							 
						 
						
							
							
								
								AK: Add some string comparison operators  
							
							... 
							
							
							
							Some of these are very inefficient. It's nice to have some optimization
opportunities in the future though. :^) 
							
						 
						
							2020-03-28 09:11:13 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								7d862dd5fc 
								
							 
						 
						
							
							
								
								AK: Reduce header dependency graph of String.h  
							
							... 
							
							
							
							String.h no longer pulls in StringView.h. We do this by moving a bunch
of String functions out-of-line. 
							
						 
						
							2020-03-23 13:48:44 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								c4a6d6ae9f 
								
							 
						 
						
							
							
								
								AK: Add FlyString::to_lowercase() and LogStream operator<<(FlyString)  
							
							
							
						 
						
							2020-03-22 19:07:02 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								26bc3d4ea0 
								
							 
						 
						
							
							
								
								AK: Add FlyString::equals_ignoring_case(StringView)  
							
							... 
							
							
							
							And share the code with String by moving the logic to StringUtils. :^) 
							
						 
						
							2020-03-22 13:07:45 +01:00 
							
								 
							
							
								 
							
						 
					 
				
					
						
							
								
								
									Andreas Kling 
								
							 
						 
						
							
							
							
							
								
							
							
								4f72f6b886 
								
							 
						 
						
							
							
								
								AK: Add FlyString, a simple flyweight string class  
							
							... 
							
							
							
							FlyString is a flyweight string class that wraps a RefPtr<StringImpl>
known to be unique among the set of FlyStrings. The class is very
unoptimized at the moment.
When to use FlyString:
- When you want O(1) string comparison
- When you want to deduplicate a lot of identical strings
When not to use FlyString:
- For strings that don't need either of the above features
- For strings that are likely to be unique 
							
						 
						
							2020-03-22 13:03:43 +01:00