Go snippets¶
Short, self-contained Go functions you can drop into any project.
| Snippet | Tags |
|---|---|
| All | collection |
| AllSame | collection |
| Any | collection |
| Average | math |
| Capitalize | string |
| CelsiusToFahrenheit | math |
| Clamp | math |
| Compact | collection |
| CompactWhiteSpace | string |
| Concat | collection |
| ContainsWhiteSpace | string |
| Decapitalize | string |
| Dedupe | collection |
| Degrees | math |
| Digits | math |
| FahrenheitToCelsius | math |
| Filter | collection, intermediate |
| Find | collection |
| FindIndex | collection |
| FindLast | collection |
| FindLastIndex | collection |
| Frequencies | collection |
| GCD | math |
| HammingDistance | math |
| Includes | collection |
| IndentString | string |
| IndexOf | collection |
| IndexOfAll | collection |
| IntRange | math |
| IsEven | math |
| IsInRange | math |
| IsLower | string |
| IsOdd | math |
| IsPalindrome | string |
| IsPowerOf2 | math |
| IsUpper | string |
| Join | collection |
| LCM | math |
| Map | collection |
| MapNumRange | math |
| Mask | string |
| MaxOf | math |
| Median | math |
| MinOf | math |
| None | collection |
| PadLeft | string |
| PadRight | string |
| Rads | math |
| RandIntInRange | math |
| RandIntSliceInRange | math |
| ReverseString | string |
| Stringify | string |
| Sum | math |
| ToCamel | string |
| ToKebab | string |
| ToSnake | string |
| TruncateString | string |
| WithIndex | collection |
| XProduct | math |
| Zip | collection |