HomeForumSourceResearchGuide
Sign in to contribute to source. how it works
Type definition file data.IntUtil by barry
expand copy to clipboardexpand
/*
 {"description" : "Convert between integers and strings."}
*/

interface IntUtil{
	/*
	 {"@description" : "Convert an integer to a string.", "@deprecated" : true, "@deprecatedBy" : "makeString", "@deprecatedOn" : "2020/01/01"}
	*/
	char[] intToString(int i)
	
	/*
	 {"@description" : "Convert a string to an integer."}
	*/
	int intFromString(char s[])
	
	/*
	 {"@description" : "Convert an integer to a string."}
	*/
	char[] makeString(int i)
	}
Revision history
To propose a new revision to this entity, use dana source put -ut your/new/version.dn -n data.IntUtil -m "reason for update" -u yourUsername
Version 2 by barry
Version 1 (this version) by barry
Notes for this version: Standard Library Initialisation