llAbs

From Second Life Wiki
Revision as of 20:03, 25 January 2007 by Strife Onizuka (talk | contribs)
Jump to navigation Jump to search

   Outdated templated used

Please change the template from 'LSLFunctionAll' to 'LSL_Function' (just replace 'LSLFunctionAll' with 'LSL_Function', do this after fixing any other erorr messages.

   'also' Tag Removed

(Please use 'also_header','also_events','also_functions','also_articles', or 'also_footer')

Summary

Function: integer llAbs( integer val );

Returns an integer that is the positive version of val.

• integer val

Examples

<lsl> default {

   state_entry()
   {
       llSay(0,"The absolute value of -4 is: "+(string)llAbs(-4) );
   }

}

</lsl>

Deep Notes

Search JIRA for related Issues

Signature

function integer llAbs( integer val );
The correct title of this article is llAbs. The initial letter is shown capitalized due to technical restrictions.


Returns the absolute value of the integer passed to it.

integer llAbs( integer number);

  • number - Any valid integer value

Specification

This function returns the absolute value passed to it. Basically, it removes the negative sign, on the number if there is one. If the parameter is a positive one, it just returns it.

Energy: 10.0
Sleep: 0.0
Function ID: 6

Caveats

  • None Known

Examples

See Also

Notes