Methods

	Number.toBase(base: Integer, [charset: String = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"]): String
	
		Encodes an integer number into string.
		
			base base that will be used to encode the number (from 2 to charset.length)
			charset set of characters that will be used in the encoding
		
	
	String.parseInt(base: Integer, [charset: String = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz"]): Integer
	
		Decodes a string into an integer number.
		
			base base that will be used to decode the number (from 2 to charset.length)
			charset set of characters that will be used in the decoding
		
	
