Changes between Version 11 and Version 12 of Doc/panc/dml/functions
- Timestamp:
- Mar 10, 2007, 9:41:00 PM (19 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Doc/panc/dml/functions
v11 v12 56 56 # will be the string '[hello world]' 57 57 }}} 58 59 === base64_encode( arg:string ) : string === 60 61 This function encodes the given string into its Base64 (defined in RFC 2045) form. 58 62 59 63 === clone( arg:element ) : element === … … 173 177 }}} 174 178 179 === hash( ... ) : nlist === 180 181 This is a synonym for the {{{nlist}}} function. 182 175 183 === index ( sub:string, arg:string, [ start:long ] ) : long === 176 184 … … 246 254 247 255 This function checks if the given argument is a double. 256 257 === is_hash( arg:element ) : boolean === 258 259 This function checks if the given argument is a nlist. Synonym for the {{{is_nlist}}} function. 248 260 249 261 === is_list( arg:element ) : boolean === … … 458 470 This function converts the given property into a string. 459 471 472 === traceback( arg:string ) : string === 473 474 Prints the argument and a traceback from the current execution point to the standard error. Value returned is the argument. This will throw an evaluation error (along with a traceback) if the argument is not a string. 475 460 476 === unescape( arg:string ) : string === 461 477