Summary
	
    Gets the last module of the specified type.
    
		
	Syntax
	public static TModule GetLast<TModule>(this IModuleList moduleList, Predicate<TModule> filter) 
    where TModule : class, IModule
	Type Parameters
	
		
			
				
					
						| Name | 
						Description | 
					
				
					
						| TModule | 
						The type of the module to find. | 
					
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | 
						Type | 
						Description | 
					
				
					
						| moduleList | 
						IModuleList | 
						The Wyam.Common.Modules.ModuleList to search. | 
					
					
						| filter | 
						Predicate<TModule> | 
						A predicate determining which module to find. | 
					
			
		 
	 	
	Return Value
	
		
			
				
					
						| Type | 
						Description | 
					
				
				
					| TModule | 
					The last module of the specified type or null if a module of the specified type could not be found. |