Nez.Matcher.ToString C# (CSharp) Method

ToString() public method

public ToString ( ) : string
return string
		public override string ToString()
		{
			var builder = new StringBuilder( 1024 );

			builder.AppendLine( "Matcher:" );
			appendTypes( builder, " -  Requires the components: ", allSet );
			appendTypes( builder, " -  Has none of the components: ", exclusionSet );
			appendTypes( builder, " -  Has at least one of the components: ", oneSet );

			return builder.ToString();
		}