1
0
mirror of https://github.com/danog/liquid.git synced 2024-12-03 13:47:48 +01:00
liquid/generics/generics.go

37 lines
858 B
Go
Raw Normal View History

2017-06-27 16:28:39 +02:00
package generics
import (
"fmt"
"reflect"
)
// GenericError is an error regarding generic conversion.
type GenericError string
func (e GenericError) Error() string { return string(e) }
func genericErrorf(format string, a ...interface{}) error {
return GenericError(fmt.Sprintf(format, a...))
}
// IsEmpty returns a bool indicating whether the value is empty according to Liquid semantics.
2017-06-27 23:54:24 +02:00
func IsEmpty(value interface{}) bool {
if value == nil {
return false
2017-06-27 16:28:39 +02:00
}
2017-06-27 23:54:24 +02:00
r := reflect.ValueOf(value)
switch r.Kind() {
case reflect.Array, reflect.Map, reflect.Slice, reflect.String:
return r.Len() == 0
case reflect.Bool:
return r.Bool() == false
default:
return false
2017-06-27 16:28:39 +02:00
}
}
2017-06-27 22:53:34 +02:00
2017-06-27 23:54:24 +02:00
// IsTrue returns a bool indicating whether the value is true according to Liquid semantics.
func IsTrue(value interface{}) bool {
return value != nil && value != false
}