Function __global->may_optimise_out_symbol
Definitions
sources/tempcode_compiler.php
- Find whether the symbol may be optimised out.
- Visibility: public
- Is abstract?: No
- Is static?: No
- Is final?: No
- Returns: bool
Parameters
| Name | Type | Passed by reference? | Variadic? | Default | Set | Range | Description |
|---|---|---|---|---|---|---|---|
| $symbol | string | No | No | required parameter | N/A | N/A | The symbol |
Returns
- May optimise
- Type: boolean
- Set: N/A
- Range: N/A
Preview
Code (PHP)
/**
* Find whether the symbol may be optimised out.
*
* @param string $symbol The symbol
* @return boolean May optimise
*/
function may_optimise_out_symbol(string $symbol) : bool
* Find whether the symbol may be optimised out.
*
* @param string $symbol The symbol
* @return boolean May optimise
*/
function may_optimise_out_symbol(string $symbol) : bool

