The BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z macro generates a comma-separated list of binary parameters with a leading comma. 
		It reenters BOOST_PP_REPEAT with maximum efficiency.
	
	Usage
		
			BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z(z, count, p1, p2)
		
	Arguments
		
			- z
- 
				The next available BOOST_PP_REPEAT dimension.
			
- count
- 
				The number of parameters to generate. 
				Valid values range from 0 to BOOST_PP_LIMIT_REPEAT.
			
- p1
- 
				The text of the first part of the parameter. 
				BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z concatenates numbers ranging from 0 to count - 1
				to generate parameters.
			
- p2
- 
				The text of the first part of the parameter. 
				BOOST_PP_ENUM_TRAILING_BINARY_PARAMS_Z concatenates numbers ranging from 0 to count - 1
				to generate parameters.
			
Remarks
		
			This macro expands to the comma-separated sequence:
			
				, p1 ## 0 p2 ## 0, p1 ## 1 p2 ## 1, ... p1 ## count - 1 p2 ## count - 1
			
		See Also
		
	Requirements