Zachary Shilton 830140157d
website: remove obselete nav data (#10811)
* website: remove obselete sidebar_title frontmatter from docs

* website: bump to latest docs-page

* website: update plugin creation and registration docs

* website: fix broken links
2021-03-31 15:07:00 -04:00

21 lines
335 B
Plaintext

---
page_title: signum - Functions - Configuration Language
description: The signum function determines the sign of a number.
---
# `signum` Function
`signum` determines the sign of a number, returning a number between -1 and
1 to represent the sign.
## Examples
```shell-session
> signum(-13)
-1
> signum(0)
0
> signum(344)
1
```