parseNumeric

SASL numerics that don't have any parsable information.

This includes 902, 903, 904, 905, 906 and 907.

Examples

 //Numeric.RPL_LOGGEDOUT
	import std.range : only;
	{
		parseNumeric!(Numeric.ERR_NICKLOCKED)(only("test", "You must use a nick assigned to you"));
	}
	{
		parseNumeric!(Numeric.RPL_SASLSUCCESS)(only("test", "SASL authentication successful"));
	}
	{
		parseNumeric!(Numeric.ERR_SASLFAIL)(only("test", "SASL authentication failed"));
	}
	{
		parseNumeric!(Numeric.ERR_SASLTOOLONG)(only("test", "SASL message too long"));
	}
	{
		parseNumeric!(Numeric.ERR_SASLABORTED)(only("test", "SASL authentication aborted"));
	}
	{
		parseNumeric!(Numeric.ERR_SASLALREADY)(only("test", "You have already authenticated using SASL"));
	}

Meta