Puppet Function: math::cube
- Defined in:
- functions/cube.pp
- Function type:
- Puppet Language
Summary
Cubes a numberOverview
Note:
puppet has a integer size limit so some values may not work and return a Puppet::ParseError
7 8 9 |
# File 'functions/cube.pp', line 7 function math::cube(Numeric $value) >> Numeric { $value * $value * $value } |