summaryrefslogtreecommitdiffstats
path: root/docs/content/en/functions/cast/ToInt.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/content/en/functions/cast/ToInt.md')
-rw-r--r--docs/content/en/functions/cast/ToInt.md20
1 files changed, 7 insertions, 13 deletions
diff --git a/docs/content/en/functions/cast/ToInt.md b/docs/content/en/functions/cast/ToInt.md
index b4a37cb6c..f82f029d5 100644
--- a/docs/content/en/functions/cast/ToInt.md
+++ b/docs/content/en/functions/cast/ToInt.md
@@ -1,20 +1,14 @@
---
title: cast.ToInt
-linkTitle: int
-description: Casts a value to a decimal (base 10) integer.
-categories: [functions]
+description: Converts a value to a decimal integer (base 10).
keywords: []
-menu:
- docs:
- parent: functions
-function:
+action:
aliases: [int]
+ related:
+ - functions/cast/ToFloat
+ - functions/cast/ToString
returnType: int
- signatures: [cast.ToInt INPUT]
-relatedFunctions:
- - cast.ToFloat
- - cast.ToInt
- - cast.ToString
+ signatures: [cast/ToInt INPUT]
aliases: [/functions/int]
---
@@ -55,5 +49,5 @@ With a hexadecimal (base 16) input:
{{% note %}}
Values with a leading zero are octal (base 8). When casting a string representation of a decimal (base 10) number, remove leading zeros:
-`{{ strings.TrimLeft "0" "0011" | int }} → 11`
+`{{ strings/TrimLeft "0" "0011" | int }} → 11`
{{% /note %}}