This commit is contained in:
Caleb Bassi 2019-01-24 04:11:20 -08:00
parent 20d8f73c36
commit 1e207d561b
1 changed files with 3 additions and 0 deletions

View File

@ -13,6 +13,7 @@ import (
wordwrap "github.com/mitchellh/go-wordwrap"
)
// InterfaceSlice takes an []interface{} represented as an interface{} and converts it
// https://stackoverflow.com/questions/12753805/type-converting-slices-of-interfaces-in-go
func InterfaceSlice(slice interface{}) []interface{} {
s := reflect.ValueOf(slice)
@ -43,6 +44,7 @@ func MinInt(x, y int) int {
return y
}
// TrimString trims a string to a max length and adds '…' to the end if it was trimmed.
func TrimString(s string, w int) string {
if w <= 0 {
return ""
@ -151,6 +153,7 @@ func MaxFloat64(x, y float64) float64 {
return y
}
// WrapCells takes []Cell and inserts Cells containing '\n' wherever a linebreak should go.
func WrapCells(cells []Cell, width uint) []Cell {
str := CellsToString(cells)
wrapped := wordwrap.WrapString(str, width)