fn: %
[contents]

Contents

Syntax

The syntax for % calls is:

f++:  
%(params)

n++:  
@%(params)

Description

% is the modulo function, it takes two parameters p1, p2 that should both be numbers and returns p1modp2.

Note: It is typically faster to use exprtk for the modulo function, plus the syntax is nicer.

f++ example

Example of % being used with f++:

  1. :=(int, a=5, b=3)
  2. console(%(a, b))

n++ example

Example of % being used with n++:

  1. @:=(int, a=5, b=3)
  2. @console(@%(a, b))